@charset "UTF-8";
/*****************************************************************************
section
*****************************************************************************/
.section {
  padding: 80px 0;
}

.sectionType02 {
  padding: 40px 0;
}

.section > .inner, .sectionType02 > .inner {
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .section {
    padding: 50px 0;
  }
  .sectionType02 {
    padding: 25px 0;
  }
  .section > .inner, .sectionType02 > .inner {
    width: auto;
    margin: 0 10px;
  }
}

/*****************************************************************************
section
*****************************************************************************/
.sectionHd {
  text-align: center;
  line-height: 1;
  margin-bottom: 50px;
}

.sectionHd .l1 {
  font-size: 1.25rem;
  color: #777777;
  margin-bottom: 0.5em;
  font-weight: 700;
}

.sectionHd .l2 {
  font-size: 3rem;
}

.sectionHd .l3 {
  margin-top: 0.5em;
  font-size: 1rem;
}

.sectionHd .l1, .sectionHd .l2, .sectionHd .l2, .sectionHd .l3 {
  display: block;
}

.sectionHd.white .l1 {
  color: rgba(255, 255, 255, 0.6);
}

.sectionHd.white .l2 {
  color: white;
}

.sectionHd.white .l3 {
  color: #666666;
}

.sectionHd .num {
  display: block;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 4.3rem;
  color: #dc0002;
  padding: 0 0 10px;
  margin: -5px 0 0;
  line-height: 1;
}

.sesectionHdSub {
  font-weight: 700;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.3;
  padding: 30px 0 30px;
  position: relative;
}

.sesectionHdSub.white {
  color: white;
}

.sesectionHdSub::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: #dc0002;
  position: absolute;
  top: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.sectionHd2 {
  text-align: center;
  line-height: 1;
  margin-bottom: 70px;
}

.sectionHd2 .l1 {
  margin-bottom: 20px;
  font-size: 3rem;
  color: #dc0002;
}

.sectionHd2 .l2 {
  font-size: 1.8rem;
  line-height: 1.2;
}

.sectionHd2 .l1, .sectionHd2 .l2 {
  display: block;
}

@media screen and (max-width: 600px) {
  .sectionHd {
    margin-bottom: 30px;
  }
  .sectionHd .l2 {
    font-size: 2.2rem;
  }
  .sesectionHdSub {
    font-size: 1.2rem;
    padding: 30px 0 30px;
  }
  .sectionHd2 {
    margin-bottom: 40px;
  }
  .sectionHd2 .l1 {
    margin-bottom: 20px;
    font-size: 2.2rem;
  }
  .sectionHd2 .l2 {
    font-size: 1.1rem;
  }
}

/*****************************************************************************
merit
*****************************************************************************/
.section.merit {
  background: url(../images/meritBg.jpg) 50% 50% no-repeat;
  backgrouns-size: cover;
  position: relative;
  color: #ffffff;
}

.section.merit::after {
  content: "";
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.section.merit > .inner {
  position: relative;
  z-index: 1;
}

.section.merit ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section.merit li {
  width: calc((100% - 20px)/2);
  margin-left: 20px;
  position: relative;
  padding: 0 0 0 110px;
  font-size: 1.4rem;
  line-height: 1.4;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section.merit li:nth-child(1) {
  margin-left: 0;
}

.section.merit li .num {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 4.4rem;
  border: 1px solid #dc0002;
  color: #dc0002;
}

.section.merit li .num i {
  font-style: italic;
}

.section.merit .card {
  margin-top: 70px;
  background: rgba(255, 255, 255, 0.4);
  padding: 40px 20px;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  text-align: center;
}

.section.merit .card .img {
  position: absolute;
  top: -20px;
  right: -20px;
}

.section.merit .card .btn {
  margin-top: 20px;
}

.section.merit .card .btn a {
  display: block;
  background: #dc0002;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  width: 100%;
  text-align: center;
  line-height: 35px;
  position: relative;
  padding: 0 30px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.section.merit .card .btn a:hover {
  background: #df817e;
}

.section.merit .card .btn a .fa {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 600px) {
  .section.merit ul {
    display: block;
  }
  .section.merit li {
    width: auto;
    margin-left: 0;
    margin-top: 40px;
    padding-left: 80px;
    font-size: 1.1rem;
  }
  .section.merit li:nth-child(1) {
    margin-left: 0;
  }
  .section.merit li .num {
    width: 70px;
    height: 70px;
  }
  .section.merit .card {
    padding: 110px 20px 20px;
    font-size: 1.1rem;
  }
  .section.merit .card .img {
    top: -20px;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

/*****************************************************************************
step
*****************************************************************************/
.step {
  padding: 45px 40px 45px 0;
  border-bottom: 1px solid #cccccc;
  position: relative;
  line-height: 1.6;
}

.step:nth-child(1) {
  border-top: 1px solid #cccccc;
}

.step > .fa {
  font-size: 50px;
  position: absolute;
  top: -25px;
  left: 50%;
  margin-left: -25px;
  color: #dc0012;
}

.stepBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.stepBox .stepNum {
  font-size: 2.4em;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  color: #dc0012;
  line-height: 1;
  margin-bottom: 4px;
}

.stepBox .img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.stepBox .img img {
  width: 100%;
  height: auto;
}

.stepBox .stepContent {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 60px;
}

.stepBox .stepContent .hd {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

.stepBox .stepContent .hdType2 {
  font-size: 1.28rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 25px;
}

.stepBox .stepContent .note {
  margin-top: 1em;
}

.stepBox .stepContent .note li {
  padding-left: 16px;
  position: relative;
}

.stepBox .stepContent .note li:before {
  position: absolute;
  left: 0;
  top: 5px;
  content: "";
  display: block;
  height: 12px;
  width: 12px;
  background: #a9a9aa;
  border-radius: 100%;
}

.stepBox .stepContent .link {
  margin-top: 10px;
}

.stepBox .stepContent .link a {
  display: inline-block;
  background: #dc0012;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  line-height: 30px;
  padding: 0 15px;
  font-size: 0.75rem;
}

.stepBox .stepContent .link a:hover {
  background: #222222;
}

.stepBox .stepContent .link a .fa {
  margin-left: 10px;
}

@media screen and (max-width: 600px) {
  .step {
    padding: 20px 20px 40px;
  }
  .stepBox {
    display: inherit;
  }
  .stepBox .label {
    margin: 0 auto 20px;
  }
  .stepBox .stepContent {
    margin: 0 auto;
  }
  .stepBox .stepNum {
    font-size: 1.6em;
  }
  .stepBox .stepContent .hd {
    font-size: 1.8rem;
  }
  .stepBox .stepContent .link {
    text-align: center;
  }
}

/*****************************************************************************
faq
*****************************************************************************/
#faq dl > * {
  font-size: 1rem;
}

#faq dl {
  margin: 10px 0 0;
}

#faq dl:nth-child(1) {
  margin: 0 0 0;
}

#faq dt {
  font-size: 1.14rem;
  background: #dc0012;
  color: #ffffff;
  padding: 15px 20px 15px 63px;
  line-height: 1.2;
  position: relative;
}

#faq dd {
  background: #ffffff;
  padding: 20px 20px 20px 63px;
  line-height: 1.8;
  position: relative;
}

#faq dt::before, #faq dd::before {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  display: block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 100%;
  position: absolute;
}

#faq dt:before {
  content: "Q";
  background: #ffffff;
  color: #dc0012;
  top: 50%;
  margin-top: -20px;
  left: 10px;
}

#faq dd:before {
  content: "A";
  background: #dc0012;
  color: #ffffff;
  top: 15px;
  left: 10px;
}

#faq dd ol li {
  list-style: decimal;
  margin-left: 20px;
}

#faq dd .ast li {
  padding-left: 20px;
  position: relative;
}

#faq dd .ast li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

/*****************************************************************************
table.shopListHandling
*****************************************************************************/
.shopListHandling {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.shopListHandling th, .shopListHandling td {
  background: #ffffff;
  border: 2px solid #f9efe3;
  padding: 8px;
  line-height: 1.2;
}

.shopListHandling thead th {
  font-weight: bold;
  text-align: center;
  background: #df817e;
  color: #ffffff;
}

.shopListHandling .name {
  width: 50%;
}

#shopListHandlingSection.mochikomi .shopListHandling .data {
  width: 140px;
}

#shopListHandlingSection.hotel .shopListHandling .data, #shopListHandlingSection.alignment .shopListHandling .data {
  width: 300px;
}

.shopListHandling tbody th {
  background: #dddddd;
  text-align: center;
}

.shopListHandling tbody td {
  text-align: center;
}

.shopListHandling tbody .name {
  font-size: 1rem;
}

.shopListHandling tbody .name .nameA {
  font-weight: 700;
}

.shopListHandling .ew {
  display: block;
  font-size: 0.75rem;
  padding: 5px 0 0;
}

#shopListHandlingSection .subSection > .hd {
  display: none;
}

#shopListHandlingSection .subSection:not(:nth-of-type(1)) thead {
  display: none;
}

@media screen and (max-width: 600px) {
  #shopListHandlingSection .subSection > .hd {
    display: block;
    margin: 20px 0 10px;
    font-size: 1.8em;
    padding-left: 18px;
    position: relative;
  }
  #shopListHandlingSection .subSection > .hd::before {
    content: "";
    height: 1px;
    width: 14px;
    background: #222222;
    position: absolute;
    top: 50%;
    left: 0;
  }
  .shopListHandling thead th.pref {
    display: none;
  }
  .shopListHandling tbody th {
    display: none;
  }
  #shopListHandlingSection .subSection:not(:nth-of-type(1)) thead {
    display: table-header-group;
  }
  .shopListHandling .name {
    width: 60%;
  }
  #shopListHandlingSection.mochikomi .shopListHandling .data, #shopListHandlingSection.hotel .shopListHandling .data, #shopListHandlingSection.alignment .shopListHandling .data {
    width: auto;
  }
}

/* table.shopListHandling   links
-------------------------------------------------------*/
.shopListHandling td .links {
  margin-top: 8px;
}

.shopListHandling td .links ul {
  /*display: flex;*/
  max-width: 90%;
  margin: 0 auto;
  justify-content: center;
}

.shopListHandling td .links li.right {
  /*width: 52%;*/
}

.shopListHandling td .links li.left {
  /*width: calc(48% - 2px);
	margin-left: 2px;*/
}

.shopListHandling td .links li.right a {
  /*border-radius: 14px 0 0 14px;*/
  border-radius: 14px;
}

.shopListHandling td .links li.left a {
  /*border-radius: 0 14px 14px 0;*/
  border-radius: 14px;
}

.shopListHandling td .links li.r {
  width: 100%;
}

.shopListHandling td .links a {
  display: block;
  text-align: center;
  position: relative;
  color: #ffffff;
  background: #dc0002;
  text-decoration: none;
  padding: 0 0 2px;
  font-size: 0.8rem;
  line-height: 26px;
  font-size: 1.2rem;
  line-height: 30px;
  -webkit-transition: all .3s;
  transition: all .3s;
  font-weight: 500;
}

.shopListHandling td .links li.net a {
  background: #dc0002;
}

.shopListHandling td .links li a:hover {
  background: #df817e;
}

.shopListHandling td .links li.r a {
  border-radius: 14px;
}

.shopListHandling td .links .fa {
  margin-right: 4px;
  vertical-align: middle;
}

.shopListHandling td .links li.t .fa {
  font-size: 1rem;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.shopListHandling td .links li.m .fa {
  font-size: 0.9rem;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.shopListHandling td .links li.r .fa {
  font-size: 0.9rem;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.shopListHandling td .links li.net .fa {
  font-size: 0.9rem;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

@media screen and (max-width: 600px) {
  .shopListHandling td .links ul {
    display: block;
    max-width: 90%;
    margin: 0 auto;
  }
  .shopListHandling td .links li {
    width: auto !important;
    margin: 5px 0 0;
  }
  .shopListHandling td .links a {
    font-size: 0.75rem;
    font-size: 1rem;
  }
  .shopListHandling td .links li a {
    border-radius: 16px !important;
    padding-left: 15px;
  }
  .shopListHandling td .links li .fa {
    margin-right: 0;
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-50%) !important;
            transform: translateY(-50%) !important;
  }
  .shopListHandling td .links li.t a br {
    display: none !important;
  }
}

.shopListHandling .trOff td {
  background: #f5f5f5;
}

.shopListHandling .trOff .nameA {
  color: #333333;
}

.shopListHandling .trOff .links a {
  background: #959595 !important;
  pointer-events: none;
}

.shopListHandling .trOff .links a:hover {
  background: #757575;
}

.shopListHandling .trOff .general-line-button {
  background: #959595 !important;
  border: #959595 !important;
  pointer-events: none;
}

.shopListHandling .gd {
  color: #ffffff;
  font-size: 0.2rem;
}

.shopListHandling .gd {
  display: inline-block;
  height: 32px;
  width: 32px;
  border-radius: 100%;
  border: 5px solid #dc0002;
}

.shopListHandling .cond {
  font-size: 0.8rem;
  width: 80%;
  margin: 1em auto 0;
  line-height: 1.4;
}

@media screen and (max-width: 600px) {
  .shopListHandling .gd {
    height: 20px;
    width: 20px;
    border-width: 3px;
  }
  .shopListHandling .spHidden {
    display: none;
  }
}

/*****************************************************************************
map
*****************************************************************************/
#shopListHandlingSection .map {
  background: #fff;
  margin: 0 0 15px;
}

#shopListHandlingSection .map ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
}

#shopListHandlingSection .map li {
  width: calc((100% - 15px)/2);
  border: 5px solid #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
}

#shopListHandlingSection .map li.noAccept {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: .7;
}

#shopListHandlingSection .map li:nth-child(2) {
  margin-left: 15px;
}

#shopListHandlingSection .map p {
  background: #dc0002;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: .8em 1em;
  border-radius: 3px 3px 0 0;
}

#shopListHandlingSection .map img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 600px) {
  #shopListHandlingSection .map {
    margin: 0 -2vw 15px;
    overflow: auto;
  }
  #shopListHandlingSection .map ul {
    padding: 4vw 2vw;
    width: 160vw;
  }
  #shopListHandlingSection .map li,
  #shopListHandlingSection .map li:nth-child(2) {
    width: calc((100% - 2vw)/2);
  }
  #shopListHandlingSection .map li:nth-child(2) {
    margin-left: 2vw;
  }
  #shopListHandlingSection .map p {
    font-size: 1rem;
  }
}

/*****************************************************************************
#promptLayer
*****************************************************************************/
#promptLayer {
  background: #dc0002;
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  color: #ffffff;
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
  -webkit-transition: all .6s ease-out;
  transition: all .6s ease-out;
}

#promptLayer.on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#promptLayer > .inner {
  width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 30px;
}

#promptLayer p {
  padding: 0 5px;
}

#promptLayer .p1 span {
  display: block;
  border: 1px solid #ffffff;
  padding: 0 10px;
}

#promptLayer .p2 {
  font-size: 1.6em;
}

#promptLayer .p3 a {
  display: block;
  background: #df817e;
  border-radius: 20px;
  padding: 0 20px 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.1em;
}

#promptLayer .p3 a:hover {
  background: #ffffff;
  color: #dc0002;
}

#promptLayer .p3 a .fa {
  margin-right: 5px;
}

#promptLayer .p4 {
  color: #333333;
}

@media screen and (max-width: 600px) {
  #promptLayer {
    top: auto;
    bottom: 0;
    -webkit-transform: translateY(200%);
            transform: translateY(200%);
    padding: 10px;
  }
  #promptLayer.on {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  #promptLayer > .inner {
    width: auto;
    line-height: 24px;
  }
  #promptLayer .p1, #promptLayer .p2, #promptLayer .p4 {
    display: none;
  }
}

.shopListHandling td .links__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.shopListHandling td .links__list li {
  width: 48%;
}

.general-line-button {
  margin: 0 0 0 10px;
  background: url(/share/line/lineIcon.png) 15px 50% no-repeat;
  background-size: auto 28px;
  background-color: #00b900;
  border: 1px solid #00b900;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  line-height: 30px;
  border-radius: 15px;
  padding: 0 10px 0 40px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
}

@media screen and (max-width: 600px) {
  .general-line-button {
    padding: 0px 5px 0 26px;
    background-position: 3px 50%;
    background-size: auto 24px;
    font-size: 0.8rem;
  }
}
/* .general-line-button {
	display: none;
} */



.line-shops-link {
  position: fixed;
  top: 200px;
  right: 10px;
  z-index: 10;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
	/* display: none; */
}

.line-shops-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background: #00b900;
  color: #fff;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  font-size: 1.15rem;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.2;
  -webkit-transition: .3s;
  transition: .3s;
}

.line-shops-link a:hover {
  -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.line-shops-link p {
  background: url(/share/line/lineIcon.png) left 50% top -10px no-repeat;
  background-size: auto 60px;
  padding-top: 45px;
}

.line-shops-link span {
  display: block;
}

@media screen and (max-width: 600px) {
  .line-shops-link {
    width: 100%;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    -webkit-transform: none;
            transform: none;
  }
  .line-shops-link a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    background: #00b900;
    color: #fff;
    height: 68px;
    border-radius: 0;
    font-size: 1.15rem;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.2;
    -webkit-transition: 0s;
    transition: 0s;
  }
  .line-shops-link a:hover {
    -webkit-transform: none;
            transform: none;
  }
  .line-shops-link p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: none;
    padding-top: 0;
  }
  .line-shops-link p::before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background: url(/share/line/lineIcon.png) no-repeat;
    background-size: cover;
  }
  .line-shops-link span {
    display: inline;
  }
}

/*
.line-shops-link {
	display: none;
}
*/

/*20220106 Web予約追加　ここから*/

/*Web予約 ベージュ背景*/
.hotel20220106_web_reserv {
 	width: 100%;
	background-color: #f9efe3;
	display: flex;
	justify-content: center;
	padding: 25px 0;
}

/*Web予約 白枠*/
.hotel20220106_web_reserv_box {
	width: 100%;
	max-width: 1325px;
	background-color: #fff;
	border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/*Web予約 白枠 SP指定*/
@media screen and (max-width: 600px) {
  .hotel20220106_web_reserv_box {

  }
}

/*Web予約 青枠コメント以外の記述エリア*/
.hotel20220106_web_reserv_box_body {
	padding: 20px 20px 0 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/*Web予約 スマホイラスト+ネットで簡単！*/
.hotel20220106_easy_box {
	display: flex;
	justify-content: flex-start;
}

.hotel20220106_sp_illust {
	width: 92px;
	margin-right:25px;
}

.hotel20220106_easy_txtbox {
	display: flex;
	align-items: center;
}

.hotel20220106_easy_txtbox p {
	background-color: #dc0002;
	padding: 9px 16px;
	text-align: center;
	line-height: 1.4;
    color: #fff;
	font-size: 45px;
	font-weight: 600;
}

/*Web予約 スマホイラスト+ネットで簡単！ SP指定*/
@media screen and (max-width: 600px) {
  .hotel20220106_easy_box {
	align-items: center;
  }
  .hotel20220106_sp_illust {
	width: 15%;
	margin-right: 30px;
  }

 .hotel20220106_easy_txtbox {
	/*margin-top: 15px;*/
  }

 .hotel20220106_easy_txtbox p {
	line-height:1.4;
	font-size: 30px;
	font-weight: 600;
	padding: 9px 9px;
  }
}


/*Web予約 Web予約はこちら+Web予約をする*/

.hotel20220106_here_box {
	display: flex;
	margin-top: -19px;
	margin-left: 137px;
	align-items: center;
}

.hotel20220106_here {
	font-size: 60px;
	font-weight: 600;
}

.hotel20220106_arrow {
	width: 66px;
	margin-left: 30px;
}

.hotel20220106_arrow2 {
	display: none;
	}

.hotel20220106_reserv_txtbox {
	width: 440px;
	height: 115px;
	margin-left: 78px;
	background-color: #dc0002;
	border-radius: 58px;
}

.hotel20220106_reserv_txtbox p {
	font-size: 36px;
	text-align: center;
	padding: 33px 95px;
	color: #fff;
	font-weight: 600;
}

.hotel20220106_here_box a {
	text-decoration: none;
}

/*Web予約 Web予約はこちら+Web予約をする SP指定*/
@media screen and (max-width: 600px) {
  .hotel20220106_here_box {
	width: 100%;
	flex-direction: column;
	align-items: center;
	margin-top: 20px;
	margin-left: 0;
	}

  .hotel20220106_here {
	font-size: 30px;
	margin-top: 10px;
	margin-bottom: 20px;
	}

  .hotel20220106_arrow {
	display: none;
	text-align: center;
	}

	.hotel20220106_arrow2 {
		display: block;
		width: 66px;
	    margin-left: 30px;
	}

 .hotel20220106_reserv_txtbox {
	width: 250px;
	height: 80px;
	margin: 0;
	padding: 10px;
	margin-top: 10px;
}

 .hotel20220106_reserv_txtbox p{
	font-size: 25px;
	text-align: center;
	padding: 20px;
    } 　
}

/*Web予約 注意書き*/
.hotel20220106_commentbox {
	width: 100%;
	background-color: #232d83;
	margin: 31px 0 0 0;
	display: flex;
    justify-content: center;
    align-items: center;
	padding: 18px 75px;
}

.hotel20220106_commentbox p {
	display: block;
    color: #fff;
	font-size: 16px;
	line-height: 1.4;
}

/*20220106 Web予約追加　ここまで*/