@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900|Noto+Serif+JP:200,300,400,500,600,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@500;600;700&display=swap');

/*
Theme Name: MAHOROBA STAY
Theme URL: 
Description: original Theme
Author: SugarBeats
Version: 1
Tags:
License: 
License URI: 
*/
/*=====================================
*
*reset
=======================================*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

body.noscroll {
  overflow: hidden;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium";
  color: #555;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a,
a:visited {
  text-decoration: none;
  color: #1977ec;
}

a:hover {
  color: #ec194a;
}

.w126 {
  width: 100%;
  max-width: 1260px !important;
  position: relative;
  margin: 0 auto;
}

@media only screen and (max-width:1300px) {
  .w126 {
    padding: 0 2%;
  }
}

.flex {
  display: flex;
}

:root {
  --awesomeFree: "Font Awesome 6 Free";
  --awesomebrand: "Font Awesome 6 Brands";
  --mPlus: "M plus 1p", "Noto Sans JP";
  --allura: 'Allura', cursive;
  --barlow: 'Barlow', "Noto Sans JP";
}

/*=====================================
*
*header
*
=======================================*/
header {
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 99998;
}

header .menu_area {
  justify-content: space-between;
  width: calc(100% - ((330 / 1920)*100%));
  margin-left: auto;
}

header .menu_area .header-menu {
  max-width: 1260px;
  width: calc((1260 / 1920) *100%);
  height: auto;
}

header .menu_area .header-menu>ul {
  height: 100%;
}

header .menu_area .header-menu li {
  font-weight: 600;
}

header .menu_area .header-menu ul>li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% / 4);
  font-size: 16px;
  transition: 0.3s;
}

header .menu_area .header-menu ul>li>span {
  pointer-events: none;
}

@media only screen and (min-width:1025px) {
  header .menu_area .header-menu ul>li span {
    position: relative;
  }

  header .menu_area .header-menu ul>li span i {
    position: absolute;
    top: 50%;
    right: -30px;
    font-size: 16px;
    transform: translate(-50%, -50%);
    transition: 0.3s;
  }

  header .menu_area .header-menu li.has-sub-menu:hover i {
    transform: translate(-50%, -50%) rotate(-180deg);
  }

}

header .menu_area .header-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0.05em;
  color: #555;
}

header .menu_area .header-menu li.has-sub-menu ul {
  position: absolute;
  left: 0;
  width: 100%;
  column-gap: 30px;
  padding-top: 35px;
  padding-left: calc((330 / 1920) *100%);
  padding-bottom: 45px;
  background: #ffe5ea;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
  z-index: 9998;
}

header .menu_area .header-menu li.has-sub-menu>ul {
  height: auto;
}

header .menu_area .header-menu li.has-sub-menu ul li {
  width: fit-content;
}

header .menu_area .header-menu li.has-sub-menu ul li a {
  align-items: center;
  font-size: 18px;
}

header .menu_area .header-menu li.has-sub-menu ul li a img {
  margin-right: 10px;
}

header .menu_area .header-menu li.has-sub-menu:hover ul {
  opacity: 1.0;
  pointer-events: auto;
}

header .menu_area .tel_btn {
  position: relative;
  width: 220px;
  height: 85px;
  background-color: #F56784;
  z-index: 1;
  transition: 0.3s;
}

@media (any-hover:hover) {
  header .menu_area .header-menu>ul>li:hover {
    background: #FFE5EA;
  }

  header .menu_area .header-menu li.has-sub-menu ul li:hover {
    opacity: 0.7;
  }


  header .menu_area .tel_btn:hover {
    opacity: 0.7;
  }
}

header .menu_area .tel_btn:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  border: solid #fff 1px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

header .menu_area .tel_btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

header .menu_area .tel_btn a {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  row-gap: 5px;
  height: 100%;
  color: #fff;
}

header .menu_area .tel_btn a span {
  display: block;
  width: 100%;
  height: fit-content;
  line-height: 1.0;
  letter-spacing: 0.05em;
}

header .menu_area .tel_btn a span {
  font-size: 18px;
  font-weight: 500;
}

@media screen and (min-width:1025px) and (max-width:1300px) {
  header .menu_area .header-menu li.has-sub-menu ul li a {
    font-size: 15px;
  }
}

/*ハンバーガーメニュー*/
@media only screen and (max-width: 1024px) {
  header {
    height: 50px;
    background-color: transparent;
  }

  header .sp_btn {
    position: fixed;
    top: 9px;
    right: 15px;
    width: 50px;
    height: 50px;
    padding: 5px;
    z-index: 99999;
  }

  header .sp_btn .wrapper {
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  header .sp_btn span {
    position: relative;
    display: block;
    width: 100%;
    height: 3px;
    background-color: #f56784;
    border-radius: 50px;
    transition: 0.3s;
  }

  header .sp_btn.active span:nth-of-type(1) {
    top: 13px;
    transform: rotate(-45deg);
  }

  header .sp_btn.active span:nth-of-type(2) {
    opacity: 0;
  }

  header .sp_btn.active span:nth-of-type(3) {
    top: -12px;
    transform: rotate(45deg);
  }

  header .menu_area .header-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    padding-top: 50px;
    background: #fff;
    overflow-Y: auto;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }

  header .menu_area .header-menu.active {
    opacity: 1.0;
    pointer-events: initial;
  }

  header .menu_area .header-menu>ul {
    display: block;
    min-height: calc(100% - 85px);
    height: initial;
  }

  header .menu_area .header-menu>ul>li {
    display: block;
    width: 100%;
    font-size: 18px;
    border-bottom: 1px #efefef solid;
  }

  header .menu_area .header-menu>ul>li>:is(a, span) {
    display: block;
    padding: 20px 15px;
  }

  header .menu_area .header-menu ul>li>span {
    pointer-events: initial;
  }

  header .menu_area .header-menu.active ul>li>span {
    pointer-events: auto;
  }

  header .menu_area .header-menu>ul>li.has-sub-menu {
    position: relative;
  }

  header .menu_area .header-menu>ul>li.has-sub-menu span.arrow {
    width: fit-content;
    position: absolute;
    top: 0;
    right: 0;
  }

  header .menu_area .header-menu>ul>li.has-sub-menu span.arrow.active {
    transform: rotate(-180deg);
    top: 2px;
  }

  header .menu_area .header-menu li.has-sub-menu ul {
    display: none;
    position: static;
    width: 100%;
    padding: 20px 15px;
    opacity: 1.0;
    transition: 0.3s;
    pointer-events: none;
  }

  header .menu_area .header-menu.active li.has-sub-menu ul {
    pointer-events: initial;
  }

  header .menu_area .header-menu li.has-sub-menu ul li {
    width: 100%;
    font-size: 16px;
  }

  header .menu_area .header-menu li.has-sub-menu ul li+li {
    margin-top: 10px;
  }

  header .menu_area .header-menu li a {
    justify-content: start;
  }

  header .menu_area .tel_btn {
    bottom: 0;
    width: 100%;
    max-height: 85px;
    opacity: 0;
    visibility: hidden;
  }

  header .menu_area .tel_btn.active {
    opacity: 1.0;
    visibility: initial;
  }
}

/*=====================================
*
*共通
*
=======================================*/
/*ボタン*/
.btn01 {
  width: 262px;
  height: 52px;
  border-radius: 50px;
  border: solid 1px #E73357;
  background: #E73357;
  transition: 0.3s;
}

.btn01 a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  transition: 0.3s;
}

.btn01 a i {
  font-size: 16px;
  padding-left: 6px;
}

.btn02 {
  position: relative;
  width: 248px;
  height: 63px;
  border-radius: 50px;
  border: solid 1px #E73357;
  background: #fff;
  transition: 0.3s;
}

.btn02 a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #E73357;
  transition: 0.3s;
}

.btn02 a i {
  position: absolute;
  right: 20px;
  top: 50%;
  font-size: 15px;
  transform: translateY(-50%);
}

.btn03 {
  width: 238px;
  height: 53px;
  border-radius: 50px;
  border: solid 1px #333;
  background: #FFE5EA;
  transition: 0.3s;
}

.btn03 a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #333;
  transition: 0.3s;
}

.btn03 a i {
  font-size: 16px;
  padding-left: 14px;
}

@media (any-hover:hover) {
  .btn01:hover {
    background: #fff;
  }

  .btn01:hover a {
    color: #E73357;
  }

  .btn02:hover {
    background: #E73357;
  }

  .btn02:hover a {
    color: #fff;
  }

  .btn03:hover {
    opacity: 0.7;
  }

}

@media only screen and (max-width: 767px) {
  .btn01 {
    width: 270px;
    height: 60px;
  }

  .btn01 a {
    font-size: 19px;
  }

  .btn a i {
    font-size: 15px;
    padding-left: 5px;
    margin-top: 3px;
  }
}

/*見出し*/
.heading.hd01 {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}

.heading.hd01 h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #333;
}

.heading.hd01 span.deco {
  position: absolute;
  left: 50%;
  top: 11px;
  z-index: -1;
  font-size: 40px;
  font-family: var(--allura);
  letter-spacing: 0.05em;
  color: #FFDEE5;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width:767px) {
  .heading.hd01 {
    margin-bottom: 30px;
  }

  .heading.hd01 span.deco {
    top: 11px;
    font-size: 34px;
    transform: translate(-50%, -50%);
  }

  .heading.hd01 h2 {
    font-size: 28px;
    color: #555;
  }
}

/*=====================================
*余白
=======================================*/

.m10a {
  margin: 10px auto;
}

.m20a {
  margin: 20px auto;
}

.m30a {
  margin: 30px auto;
}

.m40a {
  margin: 40px auto;
}

.m50a {
  margin: 50px auto;
}

.m60a {
  margin: 60px auto;
}

.m70a {
  margin: 70px auto;
}

.m80a {
  margin: 80px auto;
}

.m90a {
  margin: 90px auto;
}

.m100a {
  margin: 100px auto;
}

.m-top10 {
  margin-top: 10px;
}

.m-top20 {
  margin-top: 20px;
}

.m-top30 {
  margin-top: 30px;
}

.m-top40 {
  margin-top: 40px;
}

.m-top50 {
  margin-top: 50px;
}

.m-top60 {
  margin-top: 60px;
}

.m-top70 {
  margin-top: 70px;
}

.m-top80 {
  margin-top: 80px;
}

.m-top90 {
  margin-top: 90px;
}

.m-top100 {
  margin-top: 100px;
}

.m-top130 {
  margin-top: 130px;
}

.m-bottom10 {
  margin-bottom: 10px;
}

.m-bottom20 {
  margin-bottom: 20px;
}

.m-bottom30 {
  margin-bottom: 30px;
}

.m-bottom40 {
  margin-bottom: 40px;
}

.m-bottom50 {
  margin-bottom: 50px;
}

.m-bottom60 {
  margin-bottom: 60px;
}

.m-bottom70 {
  margin-bottom: 70px;
}

.m-bottom80 {
  margin-bottom: 80px;
}

.m-bottom90 {
  margin-bottom: 90px;
}

.m-bottom100 {
  margin-bottom: 100px;
}

@media screen and (max-width:767px) {
  .sp_m-top10 {
    margin-top: 10px;
  }

  .sp_m-top20 {
    margin-top: 20px;
  }

  .sp_m-top30 {
    margin-top: 30px;
  }

  .sp_m-top40 {
    margin-top: 40px;
  }

  .sp_m-top50 {
    margin-top: 50px;
  }

  .sp_m-top60 {
    margin-top: 60px;
  }

  .sp_m-top70 {
    margin-top: 70px;
  }

  .sp_m-top80 {
    margin-top: 80px;
  }

  .sp_m-top90 {
    margin-top: 90px;
  }

  .sp_m-top100 {
    margin-top: 100px;
  }

  .sp_m-bottom10 {
    margin-bottom: 10px;
  }

  .sp_m-bottom20 {
    margin-bottom: 20px;
  }

  .sp_m-bottom30 {
    margin-bottom: 30px;
  }

  .sp_m-bottom40 {
    margin-bottom: 40px;
  }

  .sp_m-bottom50 {
    margin-bottom: 50px;
  }

  .sp_m-bottom60 {
    margin-bottom: 60px;
  }

  .sp_m-bottom70 {
    margin-bottom: 70px;
  }

  .sp_m-bottom80 {
    margin-bottom: 80px;
  }

  .sp_m-bottom90 {
    margin-bottom: 90px;
  }

  .sp_m-bottom100 {
    margin-bottom: 100px;
  }
}


/*=====================================
*
*front
*
=======================================*/
/*=====================================
*mv
=======================================*/
#front .mv_area {
  max-width: 2000px;
  margin: 0 auto;
}

#front .mv_area .left {
  display: flex;
  align-items: center;
  position: relative;
  width: calc((612 / 1920)*100%);
  padding-left: calc((100 / 1920)*100%);
  padding-right: calc((50 / 1920)*100%);
  text-align: center;
}

#front .mv_area .left .wrapper {
  width: 100%;
}

#front .mv_area .left .logo {
  text-align: center;
}

#front .mv_area .left .heading h1 {
  font-size: 37px;
  font-weight: 500;
  line-height: 55px;
  letter-spacing: 0.07em;
  margin-top: 18px;
  margin-bottom: 8px;
  color: #221815;
}

#front .mv_area .left p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #221815;
}

#front .mv_area .left .btn {
  margin: auto;
  margin-top: 30px;
}

#front .mv_area .left .scroll {
  position: absolute;
  width: 70px;
  transform: rotate(90deg);
  left: calc((242 / 1920)*100%);
  bottom: 53px;
}

#front .mv_area .left .scroll span {
  font-family: var(--mPlus);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FF90A6;
  width: 100%;
  display: inline-block;
  text-align: start;
}

#front .mv_area .left .scroll span:nth-of-type(2) {
  display: block;
  width: 0;
  height: 1px;
  background-color: #FF90A6;
  animation: 2.5s ease-out infinite move_scrool;
}

@keyframes move_scrool {
  0% {
    opacity: 0;
  }

  22% {
    width: 0;
    opacity: 1.0;
  }

  80% {
    width: 70px;
  }

  100% {
    opacity: 0;
  }
}


#front .mv_area .right {
  position: relative;
  width: calc(100% - ((612 / 1920)*100%));
}

#front .mv_area .right img {
  height: 100%;
  object-fit: cover;
}

#front .mv_area .right .news_area {
  position: absolute;
  bottom: 0;
  max-width: 90%;
}

@media only screen and (max-width:1760px) {
  #front .mv_area .news_area .news_contents {
    width: 45%;
  }
}

@media only screen and (max-width:1600px) {
  #front .mv_area .news_area .news_contents {
    width: 48%;
  }
}

@media only screen and (max-width:1450px) {
  #front .mv_area .news_area .news_contents {
    width: 55%;
  }
}

@media only screen and (max-width:1300px) {
  #front .mv_area .news_area .news_contents {
    width: 55%;
  }
}

@media only screen and (max-width:1200px) {
  #front .mv_area .news_area .news_contents {
    width: 60%;
  }
}

#front .mv_area .right .cate_area {
  width: fit-content;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 3px 20px;
  border-top-right-radius: 3px;
  background: #F56784;
}

#front .mv_area .right .cate_area a {
  color: #fff;
}

#front .mv_area .right .news_title {
  width: 100%;
  padding: 5px 20px;
  background: #fff;

}

#front .mv_area .right .news_title a {
  display: flex;
  width: fit-content;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #555;
}

#front .mv_area .right .news_title a :is(time, span) {
  transition: 0.3s;
}

#front .mv_area .right .news_title time {
  padding-right: 25px;
}

#front .mv_area .right .news_title span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

@media (any-hover:hover) {
  #front .mv_area .right .news_title a:hover :is(time, span) {
    color: #f56784;
    opacity: 0.7;
  }
}

@media only screen and (max-width: 1300px) {
  #front .mv_area .left .heading h1 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 1024px) {
  #front .mv_area {
    flex-wrap: wrap;
  }

  #front .mv_area .left {
    width: 100%;
    padding-top: 50px;
    padding-right: 2%;
    padding-left: 2%;
  }

  #front .mv_area .left {
    text-align: center;
  }

  #front .mv_area .left .heading h1 {
    font-size: 27px;
    line-height: calc(55/27);
  }

  #front .mv_area .left .text_area p {
    font-size: 16px;
  }

  #front .mv_area .left .btn {
    margin: auto;
    margin-top: 30px;
    margin-bottom: 50px;
  }

  #front .mv_area .right {
    width: 98%;
    margin: auto;
  }
}

@media only screen and (max-width: 767px) {
  #front .mv_area .left .logo a img {
    max-width: 150px;
  }

  #front .mv_area .left .heading h1 {
    font-size: 24px;
    line-height: calc(55/36);
  }

  #front .mv_area .left p {
    font-size: 16px;
  }

  #front .mv_area .right .cate_area {
    font-size: 14px;
    padding: 3px 10px;
  }

  #front .mv_area .right .news_title {
    padding: 5px 10px;
  }

  #front .mv_area .right .news_title time {
    padding-right: 10px;
  }

  #front .mv_area .right .news_title a {
    font-size: 12px;
  }
}

/*=====================================
*宿泊プラン
=======================================*/
#front .plan {
  padding: 90px 0 0;

}

#front .plan .heading_area {
  margin-bottom: 40px;
}

#front .plan .heading.hd01 {
  margin-bottom: 0;
}

#front .plan .heading_area .hd_text {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 15px;
  color: #333;
}

#front .plan .btn_area.planBtn_area {
  margin-bottom: 155px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 120px;
}

#front .plan .btn_area.planBtn_area .btn02 {
  width: calc((100% - 80px) / 5);
  height: 60px;
}

#front .plan .btn_area.planBtn_area .btn02 a {
  font-size: 19px;
}

#front .plan .contents {
  position: relative;
  width: 100%;
  background: #f5efe5;
  background-image: linear-gradient(to right, #FFE5EA 0%, #FFE5EA 89%, #fff 89%, #fff 100%);
  z-index: 1;
}

#front .plan .contents+.contents {
  margin-top: 150px;
}

#front .plan .contents:nth-of-type(even) {
  background-image: linear-gradient(to left, #FFE5EA 0%, #FFE5EA 89%, #fff 89%, #fff 100%);
}

#front .plan .contents .contents_text {
  position: relative;
  overflow: hidden;
}

#front .plan .contents .plan-bk {
  position: absolute;
  z-index: -1;
}

#front .plan .contents .plan-bk.left {
  top: -42px;
  left: -62px;
}

#front .plan .contents .plan-bk.right {
  right: -45px;
  top: -60px;
}

#front .plan .contents .img_area {
  position: absolute;
  opacity: 0;
  transition: 0.5s;
}

#front .plan .contents.anime .img_area {
  opacity: 1.0;
}

@media only screen and (max-width:1300px) {
  #front .plan .contents {
    min-height: 464px;
  }
}


/*handicapped ここから*/
#front .plan .contents.handicapped .contents_text {
  padding: 50px 0;
}

#front .plan .contents .img_area.handicapped1 {
  top: calc(((30 / 476)*100%)*-1);
  right: calc((300 / 1920)*100%);
  z-index: 2;
}

#front .plan .contents .img_area.handicapped2 {
  top: calc(((79 / 476)*100%)*-1);
  right: 0;
  z-index: 1;
}

#front .plan .contents .img_area.handicapped3 {
  bottom: calc(((35 / 416)*100%)*-1);
  right: calc((143 / 1920)*100%);
  z-index: 2;
}

@media only screen and (max-width:1300px) {
  #front .plan .contents .img_area.handicapped {
    text-align: end;
  }

  #front .plan .contents .img_area.handicapped1 {
    top: calc(((30 / 476)*100%)*-1);
    right: calc((300 / 1920)*100%);
    z-index: 2;
  }

  #front .plan .contents .img_area.handicapped2 {
    top: calc(((79 / 476)*100%)*-1);
    right: 0;
    z-index: 1;
  }

  #front .plan .contents .img_area.handicapped3 {
    bottom: calc(((-35 / 416)*100%)*-1);
    right: calc((47 / 1920)*100%);
    z-index: 2;
  }
}

/*handicapped ここまで*/

/*tokyo ここから*/
#front .plan .contents.tokyo .contents_text {
  padding: 68px 0;
}

#front .plan .contents .img_area.tokyo1 {
  top: calc(((47 / 400)*100%)*-1);
  left: calc((270 / 1920)*100%);
  z-index: 1;
}

#front .plan .contents .img_area.tokyo2 {
  top: calc(((125 / 400)*100%)*1);
  left: 0;
  z-index: 2;
}

#front .plan .contents .img_area.tokyo3 {
  bottom: calc(((109 / 416)*100%)*-1);
  left: calc((188 / 1920)*100%);
  z-index: 1;
}

@media only screen and (max-width:1300px) {
  #front .plan .contents .img_area.tokyo {
    text-align: start;
  }

  #front .plan .contents .img_area.tokyo1 {
    top: calc(((30 / 400)*100%)*-1);
    left: calc((232 / 1920)*100%);
  }

  #front .plan .contents .img_area.tokyo2 {
    top: calc(((79 / 400)*100%)*1);
  }

  #front .plan .contents .img_area.tokyo3 {
    bottom: calc(((43 / 416)*100%)*-1);
    left: calc((150 / 1920)*100%);
  }
}

@media only screen and (max-width:1150px) {
  #front .plan .contents .img_area.tokyo3 {
    left: calc((59 / 1920)*100%);
  }
}

/*tokyo ここまで*/

#front .plan .contents_area .text_area {
  display: flex;
}

#front .plan .contents_area .contents:nth-of-type(even) .text_area {
  justify-content: end;
}

#front .plan .contents_area .text_area .text_wrapper {
  width: calc((633 / 1260)*100%);
}

#front .plan .contents_area .text_area .text_wrapper h3 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #333;
  margin-bottom: 25px;
}

#front .plan .contents_area .text_area .text_wrapper p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #333;
}

#front .plan .contents_area .text_area .btn {
  margin-top: 50px;
  margin-left: auto;
}

@media only screen and (max-width:1499px) {
  #front .plan .contents_area .text_area .text_wrapper {
    width: calc((580 / 1260)*100%);
  }
}

@media only screen and (max-width:1300px) {
  #front .plan .btn_area.planBtn_area .btn02 {
    width: calc((100% - 80px) / 4);
    height: 60px;
  }

  #front .plan .btn_area.planBtn_area .btn02 a {
    font-size: 19px;
  }
}

@media only screen and (max-width:1024px) {
  #front .plan .contents+.contents {
    margin-top: 0;
  }

  #front .plan .contents {
    background: #FFE5EA !important;
    padding-bottom: 40px;
  }

  #front .plan .contents .plan-bk{
    opacity: 0.5;
  }

  #front .plan .contents_area .text_area .text_wrapper {
    width: 100%;
  }

  #front .plan .contents .contents_text {
    min-height: auto;
    padding: 40px 0 30px;
  }

  #front .plan .contents_area .text_area .btn {
    margin-top: 30px;
  }

  #front .plan .contents .img_wrapper {
    display: flex;
    gap: 10px;
    padding: 0 2%;
  }

  #front .plan .contents .img_area {
    position: relative;
    top: initial !important;
    right: initial !important;
    left: initial !important;
    bottom: initial !important;
    width: calc((100% - 20px) / 3);
    height: 0;
    padding-bottom: 25%;
  }

  #front .plan .contents .img_area img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100%;
    object-fit: cover;
  }

  #front .plan .btn_area.planBtn_area {
    margin-bottom: 80px;
  }

  #front .plan .btn_area.planBtn_area .btn02 {
    width: calc((100% - 40px) / 3);
  }

  #front .plan .btn_area.planBtn_area .btn02 a {
    font-size: 16px;
  }

  #front .plan .btn_area .btn02 a i {
    right: 14px;
    font-size: 14px;
  }
}

@media only screen and (max-width:767px) {
  #front .plan {
    padding: 60px 0;
  }

  #front .plan .contents_area .text_area .text_wrapper h3 {
    font-size: 28px;
    text-align: center;
  }

  #front .plan .btn_area.planBtn_area {
    gap: 10px 5px;
  }

  #front .plan .btn_area.planBtn_area .btn02 {
    width: calc((100% - 10px) / 2);
    height: 45px;
  }

  #front .plan .btn_area.planBtn_area .btn02 a {
    font-size: 12px;
  }

  #front .plan .btn_area.planBtn_area a i:before {
    font-size: 12px;
  }

  #front .plan .contents_area .text_area .btn {
    margin: auto;
    margin-top: 30px;
  }
}
/*=====================================
*コラム
=======================================*/
#front .column {
  margin-top: 203px;
}
#front .column .heading.hd01 {
  margin-bottom: 40px;
}

#front .column ul {
  justify-content: space-between;
  column-gap: 70px;
}

#front .column ul li {
  width: calc((100% - 140px) / 3);
}

#front .column ul li a {
  transition: 0.3s;
}

@media (any-hover:hover) {
  #front .column ul li a:hover {
    opacity: 0.7;
  }
}

#front .column ul li .img_area {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 225px;
  margin-bottom: 9px;
}

#front .column ul li .img_area img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#front .column ul li .text_area time {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #555;
  letter-spacing: 0.05em;
  padding-bottom: 9px;
}

#front .column ul li .text_area h3 {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #555;
  margin-top: 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  letter-spacing: .05em;
}

#front .column ul li .text_area time::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 1px;
  background-color: #FFCBD5;
}

@media only screen and (max-width:1024px) {
  #front .column {
    margin-top: 70px;
  }

  #front .column ul {
    column-gap: 20px;
  }

  #front .column ul li {
    width: calc((100% - 40px) / 3);
  }
}

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

  #front .column ul {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  #front .column ul li {
    width: 100%;
  }

  #front .column ul li a {
    display: flex;
    gap: 10px;
  }

  #front .column ul li a .img_area {
    width: 40%;
    padding-bottom: 100px;
    margin-bottom: 0;
  }

  #front .column ul li a .text_area {
    width: calc(60% - 10px);
  }

  #front .column ul li .text_area :is(time, h3) {
    font-size: 12px;
    padding-bottom: 5px;
  }

  #front .column ul li .text_area time::after {
    width: 50px;
  }

}
/*=====================================
*cta_sec
=======================================*/
article.cta_sec {
  padding: 82px 0 90px;
  background-image: url(img/parts04.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 90px;
}
article.cta_sec h2 {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 34px;
}
.contact_btn a {
  background: #E73357;
  width: 240px;
  display: flex;
  height: 55px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  border-radius: 50px;
  border: 1px solid #fff;
  transition: .3s;
  position: relative;
  column-gap: 4px;
}
.cta_sec .contact_btn a {
  margin: 0 auto;
}
.contact_btn a:hover {
  color: #E73357;
  background: #fff;
  border: 1px solid #E73357;
}
.contact_btn a::before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 25px;
  line-height: 1;
  margin-top: 3px;
}
@media only screen and (max-width:1024px) {
  article.cta_sec h2 {
    font-size: 22px;
    margin-bottom: 30px;
}
article.cta_sec {
  padding: 70px 0 70px;
}
}
/*=====================================
*
*footer
*
=======================================*/
footer .menu_area {
  padding-top: 27px;
  padding-bottom: 27px;
  justify-content: space-between;
  align-items: center;
}
footer .menu_area .logo_area .logo {
  width: 246px;
}
footer .menu_area .logo_area .address {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
footer .menu_area .logo_area .tel a {
  font-size: 14px;
  font-weight: 40px;
  color: #555;
  letter-spacing: 0.05em;
  transition: 0.3s;
}
footer .menu_area .logo_area .tel a i {
  font-size: 12px;
}
@media (any-hover:hover) {
  footer .menu_area .logo_area .tel a:hover {
    opacity: 0.7;
  }
}
footer .menu_area .menu-footer-container {
  width: 52%;
}
footer .menu_area .menu-footer-container ul {
  display: flex;
  gap: 20px 30px;
  flex-wrap: wrap;
}
footer .menu_area .menu-footer-container ul li a {
  font-size: 14px;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.05em;
  transition: 0.3s;
}
@media (any-hover:hover) {
  footer .menu_area .menu-footer-container ul li a:hover {
    opacity: 0.7;
  }
}
footer .copyright {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 14px 0;
  background-color: #FFDEE5;
}
@media only screen and (max-width:1024px) {
  footer .menu_area .menu-footer-container {
    width: 60%;
  }

  footer .menu_area .menu-footer-container ul {
    gap: 15px 20px;
  }

  footer .menu_area .menu-footer-container ul li a {
    font-size: 12px;
  }
}
@media only screen and (max-width:767px) {
  footer .menu_area {
    flex-wrap: wrap;
    row-gap: 25px;
  }
  footer .menu_area .logo_area {
    width: 100%;
    text-align: center;
  }
  footer .menu_area .logo_area .logo {
    margin:0 auto 10px;
  }
  footer .menu_area .logo_area .address {
    font-size: 12px;
    margin-bottom: 10px;
  }
  footer .menu_area .menu-footer-container {
    width: 100%;
  }
  footer .copyright {
    font-size: 12px;
  }
}
/*=====================================
*
*下層共通
*
=======================================*/
:is(#page, #single, #single-hb, #archive) .under_header {
  padding: 65px 0;
  background-color: #FFE5EA;
}
:is(#page, #single, #single-hb, #archive) .under_header h1 {
  font-size: 30px;
  font-family: var(--mPlus);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #333333;
  transform: rotate(0.06deg);
}
#page .heading.thanks h1 {
  font-size: 36px;
  font-family: var(--mPlus);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #f56784;
  text-align: center;
  padding: 65px 0 30px;
}
@media only screen and (max-width:767px) {
  #page .heading.thanks h1 {
    font-size: 28px;
  }
}
/*=====================================
*
*breadcrumb
*
=======================================*/
.breadcrumb {
  max-width: 1260px;
  margin: 10px auto;
}
@media only screen and (max-width:1300px) {
  .breadcrumb {
    padding: 0 2%;
  }
}
nav.breadcrumb ul {
  display: flex;
  align-items: center;
}
nav.breadcrumb ul li {
  font-size: 13px;
  color: #555;
}
#page nav.breadcrumb ul li+li {
  margin-top: 0;
}
#page nav.breadcrumb ul li {
  padding-left: 0;
  text-indent: 0;
}
nav.breadcrumb ul li:not(:last-of-type)::after {
  content: "\f054";
  font-family: var(--awesomeFree);
  font-weight: 600;
  margin: 0 10px;
  color: #555;
}
nav.breadcrumb ul li a {
  color: inherit;
}
nav.breadcrumb ul li:last-of-type {
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  nav.breadcrumb {
    margin: 10px 0 20px;
  }
  nav.breadcrumb ul {
    justify-content: start;
    flex-wrap: wrap;
  }
  nav.breadcrumb ul li {
    font-size: 10px;
    margin-bottom: 4px;
  }
}
/*=====================================
*
*page
*
=======================================*/
/*見出し*/
#page .heading h2.hd02{
  display: flex;
  align-items: center;
  font-size: 35px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 50px;
  letter-spacing: 0.08em;
}
#page .heading h2.hd02:before{
  content: "";
  width: 150px;
  height: 1px;
  margin-right: 15px;
  background: #E73357;
}
#page .bk_sec01 .heading h2.hd02{
  color: #333333;
}
#page .bk_sec01 .heading h2.hd02:before{
  background:#f56784;
}
@media only screen and (max-width:767px) {
  #page .heading h2.hd02 {
    font-size: 25px;
	margin-bottom:40px;
  }
 #page .heading h2.hd02:before {
    width: 80px;
  }
}
#page .heading h3.hd04{
    width: fit-content;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #f56784;
    padding: 0 9px 2px;
    border-bottom: solid 3px #f56784;
    margin-bottom: 15px;
    margin-left: 0 !important;
}
@media only screen and (max-width:767px) {
 #page .heading h3.hd04{
    font-size: 18px;
	margin-bottom:10px;
  }
}
/*施設詳細about*/
#page .detail_about{
  margin-bottom:165px;
}
@media only screen and (max-width:1300px) {
  #page .detail_about {
    margin-bottom: 375px;
  }
}
 #page .detail_about .textImg_area{
  position:relative;
}
 #page .detail_about .textImg_area .left{
    width: calc((638 / 1260) *100%);
    min-width: 450px;
    margin-left: 0 !important;
}
 #page .detail_about .textImg_area .left figure img{	
  width:100%;
  max-height:350px;
  object-fit:cover;
  border-radius:20px;
}
 #page .detail_about .textImg_area .right {
  position: absolute;
  right: 0;
  bottom: -65px;
  width: calc((791 / 1260)*100%);
  min-width: 500px;
  padding: 30px;
  border-radius: 20px;
  background: rgb(255 229 234 / 90%);
}
 #page .detail_about .textImg_area .right p{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #555555;
}

#page .detail_about .textImg_area .right .room-link{
  display: flex;
  align-items: center;
  justify-content: end;
  font-size: 16px;
  font-weight: 600;
  color: #f56784;
  line-height: 1.0;
  transition: 0.3s;
  margin-top: 25px;
  cursor: pointer;
}

 #page .detail_about .textImg_area .right .room-link:after{
  content:"";
  display:block;
  width:24px;
  height:24px;
  margin-left:10px;
  background-image:url("img/circle-chevron-right-solid.png");
  background-size:cover;
}

/*間取りのモーダル*/
.room_modal-wrapper {
  z-index: 99999;
  top: 50%;
  left: 50%;
  position: fixed;
  transform: translate(-50%,-50%);
}

.room_modal-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;  
}

.room_modal-wrapper.active {
  opacity: 1;
  visibility: visible;
  background: rgba(0,0,0,0.5);
}

.room_modal-inner{
  position:relative;
}

.room_modal-inner .modal-close{
  display:flex;
  align-items:center;
  position:absolute;
  top:-30px;
  right:0;
  font-size:20px;
  font-weight:500;
  color:#fff;
  cursor:pointer;
}

.room_modal-inner .modal-close:before{
  position: relative;
  top: 1px;
  content: "\f00d";
  font-weight: bold;
  font-family: var(--awesomeFree);
  margin-right: 5px;
}

@media (any-hover:hover){
   #page .detail_about .textImg_area .right .room-link:hover{
    opacity:0.7;
  }
}
@media only screen and (max-width:1260px){
   #page .detail_about .textImg_area .left {
    width: 85%;
  }
   #page .detail_about .textImg_area .right {
    bottom: -50%;
    width: 90%;
  }
}
@media only screen and (max-width:1024px){
  #page .detail_about {
    margin-bottom: 130px;
  }
   #page .detail_about .textImg_area .left {
    width: 100%;
  }
   #page .detail_about .textImg_area .left figure img{
	border-radius: 20px 20px 0 0;
  }
   #page .detail_about .textImg_area .right {
    position:static;
    width: 100%;
	border-radius:0 0 20px 20px;
  }
	
  .room_modal-wrapper figure{
	width:96%;
	margin:auto;
  }
	
  .room_modal-inner .modal-close{
	right:2%;
	font-size:18px;
  }
}
@media only screen and (max-width:767px){
  #page .detail_about {
    margin-bottom: 70px;
  }
   #page .detail_about .textImg_area :is(.left,.right){
    min-width:initial;
  }
   #page .detail_about .textImg_area .right {
	padding: 20px 10px 30px; 
  }
   #page .detail_about .textImg_area .right p {
    font-size: 13px;
  }
   #page .detail_about .textImg_area .right .room-link a {
    font-size: 14px;
  }
   #page .detail_about .textImg_area .right .room-link a:after {
   transform: scale(0.9);
  }
}
/*KEYPOINT*/
#page .point_sec {
  padding: 50px 100px 50px;
  border-radius: 30px;
  background-color: #FFE5EA;
}
#page .point_sec .fourPoint_area {
  display: flex;
  justify-content:center;
  gap: 20px;
}
#page .point_sec .fourPoint_area .fourPoint_area-col{
  width:calc((100% - 60px) / 4)
}
#page .point_sec .fourPoint_area .icn_area {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 61px;
  height: 61px;
  margin: auto;
  border-radius: 50%;
  background: #fff;
}
#page .point_sec .fourPoint_area .point_text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 75px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #fff;
  margin-top: calc((61px / 2)*-1);
}
#page .point_sec .checkHd_area {
  margin-top: 20px;
  margin-bottom:30px;
}
#page .point_sec .checkHd_area ul{
  display:flex;
  flex-wrap:wrap;
  gap: 14px 8px;
}
#page .point_sec .checkHd_area li {
  display:flex;
  align-items:center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;  
}
#page .point_sec .checkHd_area li:before{
  content:"";
  display:block;
  width:20px;
  height:20px;
  margin-right:5px;
  background-size:cover;
  background-image:url(img/parts05.png);
}
#page .point_sec .checkText_area.none{
  display:none;
}
#page .point_sec .checkText_area{
  display: block;
  margin-top: 30px;
}
#page .point_sec .checkText_area.active{
  display:block;
}
#page .point_sec .checkText_area ul{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
}
#page .point_sec .checkText_area ul li{
  width:calc((100% - 20px) / 2);
  padding:20px;
  background-color:#fff;
  border-radius:10px;
}
#page .point_sec .checkText_area ul li .hd{
  display:flex;
  align-items:center;
  font-size:16px;
  font-weight:500;
  letter-spacing:0.05em;
  color:#555;
  margin-bottom:5px;
}
#page .point_sec .checkText_area ul li .hd:before{
  content:"";
  display:block;
  min-width: 20px;
  width:20px;
  height:20px;
  margin-right:5px;
  background-size:cover;
  background-image:url(img/parts05.png);
}
#page .point_sec .checkText_area ul li p.text{
  font-size:13px;
  font-weight:500;
  letter-spacing:0.05em;
  line-height:25px;
  color:#555;
}
#page .open_closeBtn {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: -10px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.0;
  cursor: pointer;  
}
#page .open_closeBtn p:before,#page .open_closeBtn p{
  display:flex;
  align-items:center;
}
#page .open_closeBtn p:before,#page .open_closeBtn p:after{
  content:"";
  display:inline-block;
  background-color:#555;
}
#page .open_closeBtn p:before{
  width:10px;
  height:2px;
  margin-right:6px;
}
#page .open_closeBtn.open p:after {
  position: absolute;
  width: 2px;
  height: 10px;
  left: 4px;
}
#page .open_closeBtn.none{
  display:none;
}
@media only screen and (max-width:1024px) {
 #page .point_sec {
    padding: 50px 30px 50px;
    border-radius: 25px;
  }
  #page .point_sec .fourPoint_area {
    gap: 10px;
  }
  #page .point_sec .fourPoint_area .fourPoint_area-col {
    width: calc((100% - 30px) / 4);
  }
  #page .point_sec .fourPoint_area .point_text {
    height: 63px;
    font-size: 16px;
  }
  #page .point_sec .checkHd_area li {
    font-size: 14px;
  }  
  #page .point_sec .checkText_area ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  #page .point_sec .checkText_area ul li {
    width: calc((100% - 10px) / 2);
    padding: 15px;
    border-radius: 10px;
  }
  #page .point_sec .checkText_area ul li .hd {
    font-size: 16px;
  }  
}
@media only screen and (max-width:767px) {
  #page .point_sec {
    padding: 25px 20px;
    border-radius: 20px;
  }
  #page .point_sec .fourPoint_area {
	flex-wrap:wrap;
    gap: 10px;
  }
  #page .point_sec .fourPoint_area .fourPoint_area-col {
    width: calc((100% - 10px) / 2);
  } 
  #page .point_sec .fourPoint_area .icn_area{
     width: 50px;
     height: 50px;		
  }
   #page .point_sec .fourPoint_area .icn_area img{
     transform: scale(0.75);
  } 
  #page .point_sec .fourPoint_area .point_text {
    height: 50px;
    font-size: 13px;
	margin-top: calc((50px / 2)*-1);
  }	
  #page .point_sec .checkHd_area li {
	width:calc((100% - 16px) / 3);
    font-size: 12px;
  }
  #page .point_sec .checkHd_area li:before {
	min-width: 15px;
    width: 15px;
    height: 15px;
  }  
  #page .point_sec .checkText_area ul li {
    width:100%;
  }
  #page .open_closeBtn {
    bottom: -9px;
    font-size: 18px;
  }
}

/*背景色*/
#page .bk_sec01{
  padding: 60px 0;
  background-color: #FFE5EA;
}
/*表*/
#page .maincontents .contents table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 20px;
  border-top: 0;
  border-left: 0;
}

#page .maincontents .contents table td {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 30px;
  padding: 15px 10px;
  border-color: #cccccc;
  background: #fff;
}

#page .maincontents .contents table tr:first-of-type td:first-of-type {
  border-radius: 20px 0 0 0;
}

#page .maincontents .contents table tr:first-of-type td:last-of-type {
  border-radius: 0 20px 0 0;
}

#page .maincontents .contents table tr:last-of-type td:first-of-type {
  border-radius: 0 0 0 20px;
}

#page .maincontents .contents table tr:last-of-type td:last-of-type {
  border-radius: 0 0 20px 0;
}

#page .maincontents .contents table tr+tr td {
  border-top: 0;
}

#page .maincontents .contents table tr td+td {
  border-left: 0;
}

#page .maincontents .contents .vertical_table table tr:first-of-type td {
  color: #fff;
  background-color: #d2c2a3;
}

#page .maincontents .contents .beside_table table tr td:first-of-type {
    background-color: #ffd8df;
    font-weight: bold;
}

/*表 設備*/
#page .maincontents .contents .facility table tr{
  display:flex;
}

#page .maincontents .contents .facility table td{
  display:flex;
  align-items:center;
  padding: 15px 20px;
}

#page .maincontents .contents .facility table td:first-of-type{
  width:calc((330 / 1260) *100%);
}

#page .maincontents .contents .facility table td:last-of-type{
width:calc(100% - ((330 / 1260) *100%));	
}
.btn01.addcolornone {
  border: solid 1px #333;
  background: none;
}
.btn01.addcolornone a{
  background: none;
  color: #333;
}
.btn01.addcolornone a:hover{
  opacity: .7;
}
@media only screen and (max-width:767px) {
  #page .maincontents .contents .facility table tr{
	 display:block;
  }
	
  #page .maincontents .contents table td{
	 border:0;
  }
	
  #page .maincontents .contents .facility table td:first-of-type{
    width:100%;	
  }

  #page .maincontents .contents .facility table td:last-of-type{
    width:100%;	
  }
	
  #page .maincontents .contents table tr:first-of-type td:first-of-type {
    border-radius: 20px 20px 0 0;
  }
	
  #page .maincontents .contents table tr:first-of-type td:last-of-type{
    border-radius: 0;
  }
	
  #page .maincontents .contents table tr:last-of-type td:first-of-type{
	border-radius: 0;
  }
	
  #page .maincontents .contents table tr:last-of-type td:last-of-type {
    border-radius: 0 0 20px 20px;
  }
}

/*注意点*/
#page .caution_sec .caution_contents{
  gap:40px;
}

#page .caution_sec .caution_contents .cautionBtn_col{
  width: calc((100% - 120px) / 4);
  border:15px;
}


#page .caution_sec .caution_contents .cautionBtn_col p.caution_btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  background-color: #f56784;
  border-radius: 15px;
  cursor: pointer;
}

@media only screen and (min-width:1300px){
  #page .caution_sec .caution_contents .cautionBtn_col p.caution_btn{
	 font-size: 19px;	
  }
}

#page .caution_sec .caution_contents .cautionBtn_col p.caution_btn.active{
	border-radius:15px 15px 0 0;
}

#page .caution_sec .caution_contents .cautionBtn_col p.caution_btn i {
   position: absolute;
   top: calc(50% - 5px);
   right: 10px;
   transform: translate(-50%,-50%);
   line-height: 1.0;
}

#page .caution_sec .caution_contents .cautionBtn_col p.caution_btn.active i {
  top: calc(50% + 5px);
  transform: translate(-50%,-50%) rotate(-180deg);
}

#page .caution_sec .caution_contents .cautionBtn_col p.caution_text_area{
  display: none;
  height: calc(100% - 65px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 24px;
  padding: 20px;
  background-color: #fff;
  border: solid 1px #f56784;
  border-top: 0;
  border-radius: 0 0 15px 15px;
}

#page .caution_sec .caution_contents .cautionBtn_col p.caution_text_area.active{
  display:block;
}

@media only screen and (max-width:1024px){
  #page .caution_sec .caution_contents {
    flex-wrap: wrap!important;
  }
	
  #page .caution_sec .caution_contents .cautionBtn_col {
    width: 100%;
  } 
}

@media only screen and (max-width:767px){
  #page .caution_sec .caution_contents .cautionBtn_col p.caution_btn {
    height: 50px;
    font-size: 20px;
	border-radius: 10px;
  } 
	
  #page .caution_sec .caution_contents .cautionBtn_col p.caution_btn.active{
	border-radius:10px 10px 0 0;
  }
	
  #page .caution_sec .caution_contents .cautionBtn_col p.caution_text_area{
    height: calc(100% - 50px);
    border-radius:0 0 10px 10px;
  }  
}

/*アクセス*/
#page .access_sec .map_area{
  height: 485px;
  margin-bottom:35px;
}

#page .access_sec .map_area iframe{
  border-radius:20px;
}


#page .access_sec .access_text{
  padding-left:12px;
}

#page .access_sec .access_text p{
	font-weight:500;
}

#page .access_sec .access_text p + p{
  line-height:25px;
  margin-top:8px;
}

#page .access_sec .access_text p + figure{
  margin-top:15px;
}

#page .access_sec .access_twoCol{
  gap:40px;
  flex-wrap:wrap;
}

#page .access_sec .access_twoCol :is(.left,.right){
  width:calc((100% - 40px) / 2);
}

@media only screen and (max-width:1024px){
  #page .access_sec .map_area {
    height: 350px;
  }
}

@media only screen and (max-width:767px){
  #page .access_sec .map_area {
    height: 250px;
  }
	
  #page .access_sec .access_text{
    padding-left:8px;
  }
		
  #page .access_sec .access_text figure + figure{
  margin-top:15px;
  }

}



/*料金*/
#page .price_sec .basicprice_area{
  margin-bottom: 55px;
  padding: 25px 30px;
  border-radius: 25px;
  background-color: #ffe5ea;
  box-shadow: 0px 0px 6.24px 1.76px rgba(0, 0, 0, 0.08);
}

#page .price_sec .basicprice_area .basicprice_wrapper {
  padding: 30px;
  border-radius: 15px;
  background-color: #fff;
}

#page .price_sec .basicprice_area .basicprice_wrapper .capacity{
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  text-align: center;	
}

#page .price_sec .basicprice_area .basicprice_wrapper .time_area{
  align-items:center!important;
  justify-content:center;
}
#page .price_sec .basicprice_area .basicprice_wrapper .time_area .deco{
  flex: initial;
}

#page .price_sec .basicprice_area .basicprice_wrapper .time_area :is(.check_in,.check_out){
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding-right: 5px;
  padding-left: 5px;
  background-image: linear-gradient(to bottom, #fff 0%, #fff 70%, #ffe5ea 70%, #ffe5ea 88%, transparent 88%, transparent 100%);
  flex: initial;
}

#page .price_sec .basicprice_area .basicprice_wrapper .basic_price {
  align-items: center!important;
  justify-content: center;
  gap: 0;
  margin-top:20px;
}

#page .price_sec .basicprice_area .basicprice_wrapper .basic_price .text_area {
  display:flex;
  align-items:flex-end;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

#page .price_sec .basicprice_area .basicprice_wrapper .basic_price .text_area p:nth-of-type(1){
  line-height: 1.0;
}

#page .price_sec .basicprice_area .basicprice_wrapper .basic_price .price_area {
  letter-spacing: 0.04em;
}

#page .price_sec .basicprice_area .basicprice_wrapper .basic_price .price_area span{
  font-weight: 600;	
}

#page .price_sec .basicprice_area .basicprice_wrapper .basic_price .price_area span:nth-of-type(1) {
  font-size: 28px;
}

#page .price_sec .basicprice_area .basicprice_wrapper .basic_price .price_area span:nth-of-type(2){
  font-family:var(--barlow);
  font-size: 30px;
  font-weight:800;
}

#page .price_sec .basicprice_area .basicprice_wrapper .basic_price .price_area span:nth-of-type(3){
  font-size: 24px;
}

#page .price_sec .price_area {
  letter-spacing: 0.04em;
}

#page .price_sec .price_area span{
  font-weight: 600;	
  font-size:20px;
}

#page .price_sec .price_area span:nth-of-type(1) {
  font-size: 28px;
}

#page .price_sec .price_area span:nth-of-type(2){
  font-family:var(--barlow);
  font-size: 30px;
  font-weight:800;
}

#page .price_sec .price_area span:nth-of-type(3){
  font-size: 24px;
}


@media only screen and (max-width:1260px){
	
  #page .price_sec .price_area span:nth-of-type(1) {
    font-size: 25px;
  }
	
  #page .price_sec .price_area span:nth-of-type(2) {
    font-size: 27px;
  }
	
  #page .price_sec .price_area span:nth-of-type(3) {
    font-size: 21px;
  }
}

@media only screen and (max-width:1024px){
  #page .price_sec .basicprice_area .basicprice_wrapper .time_area :is(.check_in,.check_out){
	flex-basis: initial!important;
  }
	
 #page .price_sec .basicprice_area .basicprice_wrapper .time_area .deco{
	flex-basis: initial!important;
  }
	
  #page .price_sec .basicprice_area .basicprice_wrapper .basic_price :is(.text_area,.price_area ){
    flex-basis: initial!important;		
  }
  #page .price_sec .basicprice_area .basicprice_wrapper .basic_price .price_area span:nth-of-type(1) {
    font-size: 24px;
}
}

@media only screen and (max-width:767px){
  #page .price_sec .basicprice_area{
    padding: 20px 25px;
    border-radius: 20px;
  }
	
  #page .price_sec .basicprice_area .basicprice_wrapper {
    padding: 20px 15px;
    border-radius: 10px;
  }
	
  #page .price_sec .basicprice_area .basicprice_wrapper .capacity {
    font-size: 19px!important;
	margin-bottom:10px;
  }  
	
  #page .price_sec .specialrate_area .specialrate_col {
    width: 100%!important;
  }
	
  #page .price_sec .basicprice_area .basicprice_wrapper .time_area .deco {
    height: 100%;
    width: 100%;
    text-align: center;
    transform: rotate(90deg);
  }
}

/*=====================================
*
*archive
*
=======================================*/
/*共通*/
#archive .looplist {
  margin-top: 80px;
}

#archive .looplist ol li+li {
  border-top: 1px #dbd2d1 solid;
}

#archive .looplist ol li a .text_area {
  color: #555;
  letter-spacing: 0.05em;
}

#archive .looplist ol li a {
	display:block;
  padding:10px;
  transition: 0.3s;
}

@media (any-hover) {
  #archive .looplist ol li:hover a {
    opacity:0.7;
  }
}
	
 #archive .looplist ol li a .text_area h2 {
    font-weight: 500;
    font-size: 20px;
    color: #f56784;
    margin-top: 5px;
}

/*ギャラリー*/
#page .tab_area {
  justify-content: center;
  gap: 50px;
}

@media only screen and (max-width:1300px){
  #page .tab_area {
    width: 96%;
  } 
}

#page .tab_area .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 350px;
  height: 70px;
  border-radius: 15px 15px 0 0;
  background: #ffe5ea;
  cursor: pointer;
  max-width: 350px;
}

#page .tab_area .tab p {
    font-size: 22px;
    color: #f56784;
    font-weight: 600;
    letter-spacing: 0.05em;
}

#page .tab_area .tab.select{
  position: relative;
  border: 1px solid #f56784;
  background-color: #fff;
}

#page .tab_area .tab.select:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #fff;
  z-index: 2;
}

#page .tab_area .tab.select p {
  color: #f56784;
}


#page .gallery{
  display: none;
  padding: 90px 55px 60px;
  border: 1px solid #f56784;
  border-radius: 20px;
}

@media only screen and (max-width:1300px){
  #page .gallery{
    width:96%;
	margin-right:auto;
	margin-left:auto;
  } 
}


#page .gallery.active{
  display:flex;
  flex-wrap:wrap;
  gap:30px;
}

#page .gallery .gallery_area{
  width:calc((100% - 150px) / 6);
}

#page .gallery .gallery_cont .gallery_img_area{
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;	
  cursor:pointer;
}

#page .gallery .gallery_cont .gallery_img_area img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#page .gallery .gallery_area p {
  font-size: 12px;
  font-weight: 500;
  color: #555;
  letter-spacing: 0.05em;
  margin-top: 5px;
}

#page .gallery .modal_area{
  z-index: 99999;
  top: 50%;
  left: 50%;
  position: fixed;
  transform: translate(-50%,-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

#page .gallery .modal_area.active {
  opacity: 1.0;
  visibility: initial;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
}

#page .gallery .modal_area.active .modal_cont{
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 30px 50px;
  background: #fff;
  border-radius: 10px;
  transform: translate(-50%,-50%);
}

#page .gallery .modal_area.active .modal_cont .modal_close_btn{
  width: fit-content;
  margin-bottom: 5px;
  margin-left: auto;
  cursor: pointer;
}

#page .gallery .modal_area.active .modal_cont .modal_close_btn p{
  font-size:18px;
}

#page .gallery .modal_area.active .modal_cont .modal_close_btn p i{
  margin-right: 5px;
}

#page .gallery .modal_area.active .modal_cont > p.text {
  display: flex;
  justify-content: center;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-top: 10px;
}


@media only screen and (max-width:1024px){
  #page .tab_area{
    gap: 10px;
  }
	
  #page .tab_area .tab{
    width: calc((95% - 20px) / 3);
    height: 50px;
	flex-basis: initial!important;
  }
  #page .tab_area .tab p {
    font-size: 18px;
  }	

  #page .gallery{
	padding: 60px 40px 60px;
  }
	
  #page .gallery .gallery_area {
    width: calc((100% - 120px) / 5);
  }  
}

@media only screen and (max-width:767px){
  #page .tab_area {
    gap: 5px;
  }
  #page .tab_area .tab {
    width: calc((98% - 10px) / 3);
    height: 35px;
	 border-radius:8px 8px 0 0;
  }
  #page .tab_area .tab p {
    font-size: 14px;
  }
	
  #page .gallery.active{
	gap:15px;
	padding: 30px 20px 30px;
	border-radius:10px;
  }
	
  #page .gallery .gallery_area {
    width: calc((100% - 30px) / 3);
  } 
	
  #page .gallery .modal_area.active .modal_cont {
	width: 96%;
    padding: 25px 20px;
    border-radius: 7px;
  }
	
  #page .gallery .modal_area.active .modal_cont img{
	width:100%;
  }
}

/*ページ送り*/
nav.pagination {
  margin-top: 50px;
}

nav.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap:wrap;
  gap: 20px;
}

nav.pagination ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #555;
}

nav.pagination ul li span.current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #f56784;
  border-radius: 50%;
  padding: 0px 0px 3px 1px;
}

nav.pagination ul li a {
  color: inherit;
  transition: 0.3s;
}

/*=====================================
*
*single
*
=======================================*/
/*見出し・アイキャッチ*/
#single .maincontents h1 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 30px;
  margin-bottom: 20px;
}

#single .maincontents .img_area {
  position: relative;
  width: 100%;
  height: 450px;
  margin: 10px auto 50px;
}

#single .maincontents .img_area img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

#single .maincontents p.description{
  margin-bottom: 30px;
}

/*目次*/
#single #toc_container {
  width: 100% !important;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto 75px;
  border-radius: 15px;
  border: none;
  background: #F5EFE5;
}

#single #toc_container p.toc_title {
  font-size: 18px;
  color: #645958;
}

#single #toc_container p.toc_title a {
  color: #645958;
}

#single #toc_container p.toc_title a:hover {
  text-decoration: none;
}

#single .maincontents .contents #toc_container :is(ul, ol) {
  margin: 0;
  padding-left: 0;
  list-style: initial;
}

#single #toc_container ul.toc_list li ul {
  margin-top: 5px;
}

#single #toc_container ul li a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #645958;
}

#single #toc_container ul li  > ul li a {
    display: block;
    margin-top: 10px;
    margin-left: 1em;
}


#single #toc_container ul li a:hover {
  text-decoration: none;
}

#single #toc_container ul.toc_list li+li {
  margin-top: 15px;
}

/*本文*/
#single .maincontents .contents h2 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  margin-top: 50px;
  padding: 10px 5px;
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
}

#single .maincontents .contents h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 50px;
  margin-bottom: 15px;
}

#single .maincontents .contents p {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 30px;
}

#single .maincontents .contents p+p {
  margin-top: 20px;
}

#single .maincontents .contents figure {
  margin: 30px auto;
}

#single .maincontents .contents figure img {
  border-radius: 20px;
}


#single .maincontents .contents> :is(ul, ol) {
  margin: 30px auto;
  padding-left: calc(1.0em + 6px);
  list-style: initial;
}

#single .maincontents .contents> :is(ul, ol) li {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 30px;
  list-style: initial;
}

#single .maincontents .contents>ol li {
  list-style: decimal;
}

#single .maincontents .contents table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 20px;
  border-top: 0;
  border-left: 0;
}

#single .maincontents .contents table td {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 30px;
  padding: 15px 10px;
  border-color: #cccccc;
}

#single .maincontents .contents table tr:first-of-type td:first-of-type {
  border-radius: 20px 0 0 0;
}

#single .maincontents .contents table tr:first-of-type td:last-of-type {
  border-radius: 0 20px 0 0;
}

#single .maincontents .contents table tr:last-of-type td:first-of-type {
  border-radius: 0 0 0 20px;
}

#single .maincontents .contents table tr:last-of-type td:last-of-type {
  border-radius: 0 0 20px 0;
}

#single .maincontents .contents table tr+tr td {
  border-top: 0;
}

#single .maincontents .contents table tr td+td {
  border-left: 0;
}

#single .maincontents .contents .vertical_table table tr:first-of-type td {
  background-color: #ffd8df;
  font-weight: bold;
}

#single .maincontents .contents .beside_table table tr td:first-of-type {
  background-color: #ffd8df;
  font-weight: bold;
}

/*ページ送り*/
#single .maincontents .contents .page_pn h2 {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 35px;
  letter-spacing: 0.05em;
  line-height: 1.0;
  border: 0;
  padding: 0;
  margin-top: 0;
  margin-bottom: 50px;
}

#single .maincontents .contents .page_pn h2:before {
  content: "";
  display: inline-block;
  width: 150px;
  height: 1px;
  margin-right: 15px;
  background-color: #E73357;

}

#single .maincontents .contents .page_pn {
  margin-top: 90px;
}

#single .maincontents .contents .page_pn ol {
  display: flex;
}

#single .maincontents .contents .page_pn ol li {
  position: relative;
  width: 50%;
}

#single .maincontents .contents .page_pn ol li:after {
  content: "記事を見る";
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  transform: translate(-50%, -50%) rotate(0.06deg);
  z-index: 4;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}

#single .maincontents .contents .page_pn ol li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1;
  pointer-events: none;
}

#single .maincontents .contents .page_pn ol li:before {
  border-radius: 15px 0 0 15px;
}

#single .maincontents .contents .page_pn ol li:last-of-type:before {
  border-radius: 15px;
}

#single .maincontents .contents .page_pn ol li+li:before {
  border-radius: 0 15px 15px 0 !important;
}

#single .maincontents .contents .page_pn ol li .cont {
  position: absolute;
  left: 15px;
  bottom: 5px;
  z-index: 2;
}

#single .maincontents .contents .page_pn ol li a .cont {
  max-width: 80%;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
/* #single .maincontents .contents .page_pn ol li a .cont .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
} */
#single .maincontents .contents .page_pn ol li a .image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 200px;
  overflow: hidden;
}

#single .maincontents .contents .page_pn ol li a .image {
  border-radius: 15px 0 0 15px;
}

#single .maincontents .contents .page_pn ol li:last-of-type a .image {
  border-radius: 15px;
}

#single .maincontents .contents .page_pn ol li+li a .image {
  border-radius: 0 15px 15px 0 !important;
}

#single .maincontents .contents .page_pn ol li a .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

@media (any-hover:hover) {
  #single .maincontents .contents .page_pn ol li:hover:after {
    opacity: 1.0;
  }

  #single .maincontents .contents .page_pn ol li:hover a .image img {
    transform: scale(1.1);
  }
}

@media only screen and (max-width:1024px) {
  #single {
    padding-top: 50px;
  }
  #single .maincontents .img_area{
	height: 350px; 
  }
}

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

  /*見出し・アイキャッチ*/
  #single .maincontents h1 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 20px;
  }

  #single .maincontents .img_area {
    height: 200px;
    margin: 10px auto 50px;
  }

  #single #toc_container {
    padding: 20px;
    margin: 0 auto 60px;
  }

  #single #toc_container p.toc_title {
    font-size: 16px;
  }

  #single #toc_container ul li a {
    font-size: 14px;
  }

  /*本文*/
  #single .maincontents .contents h2 {
    font-size: 24px;
  }

  #single .maincontents .contents h3 {
    font-size: 22px;
  }

  #single .maincontents .contents p {
    font-size: 14px;
  }

  #single .maincontents .contents :is(ul, ol) li {
    font-size: 14px;
  }

  #single .maincontents .contents table td {
    font-size: 12px;
    padding: 10px 10px;
  }

  /*ページ送り*/
  #single .maincontents .contents .page_pn h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }

  #single .maincontents .contents .page_pn h2:before {
    width: 75px;
  }

  #single .maincontents .contents .page_pn {
    margin-top: 70px;
  }

  #single .maincontents .contents .page_pn ol {
    display: flex;
    flex-wrap: wrap;
  }

  #single .maincontents .contents .page_pn ol li {
    width: 100%;
  }

  #single .maincontents .contents .page_pn ol li+li {
    margin-top: 20px;
  }


  #single .maincontents .contents .page_pn ol li:before {
    border-radius: 15px !important;
  }
	
  #single .maincontents .contents .page_pn ol li + li:before{
	border-radius: 15px !important;
  }

  #single .maincontents .contents .page_pn ol li a .cont {
    -webkit-line-clamp: 2;
  }

  #single .maincontents .contents .page_pn ol li a .image {
    padding-bottom: 100px;
  }

  #single .maincontents .contents .page_pn ol li a .image {
    border-radius: 15px !important;
  }


  #single .maincontents .contents .page_pn ol li a .image img {
    border-radius: 15px !important;
  }
}
/*お知らせ以外*/

#archive .column ol li a {
  gap: 20px;
  padding: 25px;
  transition: 0.3s;
}

@media (any-hover) {
  #archive .column ol li:hover a {
    background: #ffe5ea;
  }
}

#archive .column ol li a .image {
  position: relative;
  width: calc(40% - 20px);
  height: 0;
  padding-bottom: 300px;
}

#archive .column ol li a .image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

#archive .column ol li a .text_area {
  width: 60%;
  margin-top: 20px;
}

#archive .column ol li a .text_area time {
  font-size: 16px;
  font-weight: 500;
}

#archive .column ol li a .text_area h2 {
  font-weight: 600;
  font-size: 22px;
  color: #f56784;
  margin: 5px 0 15px;
}

#archive .column ol li a .text_area p {
  font-size: 18px;
  line-height: 30px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#archive .column ol li a .text_area .more {
  font-size: 18px;
  font-weight: 500;
  text-align: end;
  margin-top: 30px
}

#archive .column ol li a .text_area .more i {
  margin-left: 10px;
}

@media only screen and (max-width:767px) {
	#archive .column ol li a {
    gap: 0;
    flex-direction: column;
    padding: 25px 0;
}
	#archive .column ol li a .image {
    width: 100%;
    padding-bottom: 200px;
}
	#archive .column ol li a .text_area {
    width: 100%;
}
	#archive .column ol li a .text_area h2 {
    font-size: 20px;
}
	#archive .column ol li a .text_area p {
    font-size: 16px;
}
}
/*=====================================
*プライバシーポリシー
=======================================*/
.privacy_sec{
  margin-top: 90px
}
.privacy_sec h2 {
  margin: 30px 0;
  background: #ffe5ea;
  padding: 1em;
  border-radius: 15px;
  font-size: 22px !important;
}
.privacy_sec p {
  margin: 30px 0;
  line-height: 1.8;
}
.privacy_sec ul {
    row-gap: 10px;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    padding-left: 1.4em;
}
.privacy_sec ul li {
  list-style: disc;
}
@media only screen and (max-width:767px) {
  .privacy_sec p {
    font-size: 14px;
  }
  .privacy_sec h2 {
    font-size: 20px !important;
  }
}
/*=====================================
*運営者情報
=======================================*/
#page .maincontents .contents table tr td:first-of-type {
  background-color: #ffd8df;
  font-weight: bold;
  vertical-align: middle;
}
.greeting_row {
  padding: 25px 30px;
  border-radius: 25px;
  background-color: #ffe5ea;
  box-shadow: 0px 0px 6.24px 1.76px rgba(0, 0, 0, 0.08);
}
.greeting_row.shadow_none {
  box-shadow: none;
}
.greeting_row p {
  background: #fff;
  line-height: 1.8;
  font-weight: bold;
  font-size: 16px;
}
.greeting_row .wp-block-group__inner-container {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
}
@media only screen and (max-width:767px) {
  .greeting_row {
    padding: 20px 25px;
    border-radius: 20px;
  }
  .greeting_row .wp-block-group__inner-container {
    padding: 20px 15px;
    border-radius: 10px;
  }
  .greeting_row p {
    font-size: 14px;
  }
  .administrator_sec tr{
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .administrator_sec tr td{
    width: 100%;
    border: 1px solid #cccccc !important;
    margin-bottom: -1px;
  }
  .administrator_sec tr:last-of-type td:last-of-type{
    margin-bottom: 0px;
  }
}
/*=====================================
*問い合わせ
=======================================*/
#page .mw_wp_form form table.contact-table {
  display: block;
  width: 100%;
  max-width: 950px;
  padding: 65px 35px;
  border: 1px solid #ededed;
  border-radius: 15px;
  margin: auto;
  margin-bottom: 45px;
}

#page .mw_wp_form form table tbody{
  display:block;
}

#page .mw_wp_form form table tr{
  display:flex;
  align-items:start;
}

#page .mw_wp_form form table tr +tr{
  margin-top:35px;
}

#page .mw_wp_form form table tr th{
  align-items:center;
  width:25%;
}

#page .mw_wp_form form table tr th p{
  font-size:18px;
  font-weight:500;
}

#page .mw_wp_form form table tr th p.required{
  font-size: 16px;
  color: #fff;
  padding: 5px 10px;
  margin-left: 8px;
  border-radius: 5px;
  background: #f56784;
}

#page .mw_wp_form form table tr td{
  display:block;
  width: 75%;
  padding:0!important;
  background: none !important;
}

#page .mw_wp_form form table tr td :is(input,textarea){
  font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium";
  font-size:16px;
  padding:5px 10px;
  border: 1px solid #ddd;
  border-radius:5px;
}
#page .mw_wp_form form table tr td input:focus{
  outline: 1px solid #f56784;
}
#page .mw_wp_form form table tr td textarea:focus{
  outline: 1px solid #f56784;
}

#page .mw_wp_form form table tr td input{
  width:100%;
  height: 30px;
}

#page .mw_wp_form form table tr td textarea{
  resize: none;
  width: 100%;
  height: 200px;
}

#page .mw_wp_form form table + p{
  width: 238px;
  height: 63px;
  margin: auto;
  border-radius: 50px;
  border: solid 1px #e73357;
  background: #e73357;
  transition: 0.3s;
  cursor: pointer;
}

#page .mw_wp_form form table + p input {
  display: flex;
  align-items: center;
  justify-content: center;
  width:100%;
  height: 100%;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  padding-top: 3px;
  transition: 0.3s;
  background: transparent;
  border: none;
  margin: auto;
  cursor:pointer;
}

#page .mw_wp_form form p.btn {
  width: 238px;
  height: 63px;
  margin: auto;
  border-radius: 50px;
  border: solid 1px #e73357;
  background: #e73357;
  transition: 0.3s;
  cursor: pointer;
}
#page .mw_wp_form form p.btn input {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: "Noto Sans JP";
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  transition: 0.3s;
  background: transparent;
  border: none;
  margin: auto;
  cursor: pointer;
}
#page .mw_wp_form form .h-captcha {
  text-align: center;
  margin-bottom: 30px;
}

@media (any-hover:hover){
  #page .mw_wp_form form table + p:hover{
	background: #fff;  
  }
	
  #page .mw_wp_form form table + p:hover input {
    color: #e73357;
  }
}

@media only screen and (max-width:1024px){
 #page .mw_wp_form form table {
    width: 96%;
    padding: 45px 30px;
  }
	
  #page .mw_wp_form form table tr th {
    width: 30%;
  }
	
  #page .mw_wp_form form table tr th p {
    font-size: 16px;
  }
	
  #page .mw_wp_form form table tr td {
    display: flex;
    width: 70%;
  }
}

@media only screen and (max-width:767px){
 #page .contact_text{
    width: 96%;
    font-size: 18px!important;
    text-align: start;
    margin-left: auto;
    margin-right: auto;
 }
	
  #page .mw_wp_form form table tr{
	display:block;
  }
	
  #page .mw_wp_form form table tr :is(th,td){
	width:100%;
  }
	
  #page .mw_wp_form form table tr th{
	margin-bottom:10px;
  }

 #page .mw_wp_form form table tr th p{
    font-size: 15px;
  }
	
  #page .mw_wp_form form table tr th p.required{
    font-size:14px;
  }
	
  #page .mw_wp_form form table + p{
    width: 230px;
    height: 59px;
  }

  #page .mw_wp_form form table + p input {
    font-size: 19px;
  }
  
}
/*テキストのみ*/
#page .text_box p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 30px;
}
@media only screen and (max-width:1024px) {
#page .thanks.text_box {
  width: 96%;
  margin: 0 auto;
}
}
@media only screen and (max-width:767px) {
  #page .text_box.thanks p {
    font-size: 14px;
    text-align: start !important;
  }
}
#page .thanks_btn {
  width: 238px;
  height: 53px;
  margin: 50px auto 0;
  border-radius: 50px;
  background: #f56784 !important;
  border: 1px solid #f56784;
}

#page .thanks_btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color:#fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-right: 10px;
  background: #f56784 !important;
  transition: 0.3s;
}

#page .thanks_btn a:after {
  position: relative;
  top: 1px;
  content: "\f054";
  font-family: var(--awesomeFree);
  font-weight: 600;
  line-height: 1.0;
  margin-left: 10px;
}

@media (any-hover:hover) {

  #page .thanks_btn a:hover {
    color: #f56784 !important;
    background: #fff !important;
  }
}
/*=====================================
*section5
=======================================*/

/*=====================================
*section6
=======================================*/

/*=====================================
*section7
=======================================*/

/*=====================================
*section8
=======================================*/

/*=====================================
*section9
=======================================*/

/*=====================================
*section10
=======================================*/


/*=====================================
*
*single
*
=======================================*/

/*=====================================
*
*page
*
=======================================*/

/*=====================================
*
*archive
*
=======================================*/

/*=====================================
*
*breadcrumb
*
=======================================*/

/*=====================================
*
*toc
*
=======================================*/

/*=====================================
*
*footer
*
=======================================*/

/*=====================================
*
*sidenav
*
=======================================*/


/*=====================================
*
*pc
*
=======================================*/
@media screen and (min-width: 1025px) {
  .sp {
    display: none;
  }

  .tb {
    display: none;
  }

  .sp_tb {
    display: none;
  }
}

/*=====================================
*
*tb
*
=======================================*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: none;
  }

  .tb {
    display: inherit;
  }

  .tb_pc {
    display: inherit;
  }

  .sp_tb {
    display: inherit;
  }
}

/*=====================================
*
*sp
*
=======================================*/
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }

  .tb_pc {
    display: none;
  }

  .sp {
    display: inherit;
  }

  .tb {
    display: none;
  }

  .sp_tb {
    display: inherit;
  }
}