@charset "utf-8";
/* CSS Document */
   
/*///アコーディオンここから///*/



.accordion {
  max-width: 800px;
  margin: auto;
}
.menu-item-234 a {
	background: #FFBFEF;
}
.menu-item-300 a {
	background: #9ce8ac;
}
.comming {
text-align: center;
    font-size: 18px;
    background: #fff;
    border: 2px dotted #333;
    padding: 10px;
    border-radius: 10px;
    max-width: 270px;
    margin: 0 auto;
}
.i4ewOd-pzNkMb-haAclf.QUIbkc .i4ewOd-pzNkMb-tJHJj {
	display: none !important;
}

.accordion-item {
  background: white;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.accordion-question {
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
  font-weight: bold;
}

.accordion-question::after {
  content: "＋";
  position: absolute;
  right: 20px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.accordion-question.active::after {
  content: "−";
}

/* ← このブロックが2つに分かれていたので統合して整理しました */
.accordion-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  padding: 0 20px;
  border-top: 1px solid #eee;
  line-height: 1.6;
  background-color: #fefefe;
}

/* アクティブ時のスタイル */
.accordion-question.active + .accordion-answer {
  max-height: 300px;
  opacity: 1;
  padding: 15px 20px;
}

/*///アコーディオンここまで///*/

.slider-container2 {
  width: 250%;
  overflow: hidden;
  margin-bottom: 10px;
}
.top_main_imgbox {
	position: relative;
}
.slider2 {
  display: flex;
  animation: slide2 50s linear infinite;
}

.slider2 img {
  width: 100%; /* 画像の幅を100%に設定 */
}

@keyframes slide2 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.slider-container {
    width: 250%;
    overflow: hidden;
}

.slider {
  display: flex;
  animation: slide 50s linear infinite;
}

.slider img {
  width: 100%; /* 画像の幅を100%に設定 */
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(-100%);
  }
}
  .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.8);
      align-items: center;
      justify-content: center;
    }

    .modal-content {
max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    width: auto;
    height: 100%;
}

    .modal:target {
      display: flex;
    }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 40px;
      color: white;
      text-decoration: none;
      font-weight: bold;
    }


/*///topp//*/ 
.foot_sns_main {
	position: relative;
}
.sns_text span {
	display: block;
}
.sns_text {
	max-width: 200px;
	width: 100%;
	text-align: center;
	display: block;
	margin: 0 auto;
	position: relative;
}
.sns_text::before {
    height: 59px;
    width: 3px;
    background: #becbff;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    transform: rotate3d(1, 1, 1, 305deg);
}

.sns_text::after {
    height: 59px;
    width: 2px;
    background: #becbff;
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    transform: rotate(45deg);
}



.foot_sns {
    display: flex;
    max-width: 210px;
    width: 100%;
    margin: 0 auto;
    justify-content: space-around;
    margin-bottom: 25px;
    margin-top: 10px;
}
.foot_sns li img {
	width: 100%;
	transition: 0.5s;
}
.foot_sns li img:hover {
	transform: scale(1.1);
	transition: 0.5s;
}
.foot_sns li {
	max-width: 50px;
	text-align: center;
	display: inline;
}
.voice_card img {
    max-width: 200px;
    display: block !important;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}
/* 全体セクション設定 */
.user_voices_section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.user_voices_section h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

/* 2列×2行のグリッドレイアウト */
.user_voices_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2列配置 */
    gap: 20px; /* ボックス同士の間隔 */
}

/* 各四角（カード）のデザイン */
.voice_card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

/* ご利用者様のお名前部分 */
.voice_user {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid #ddd;
}

/* 女性/男性のアクセントカラー（不要な場合は削除可能） */
.voice_user.font_female {
    color: #e85285;
    border-color: #f8bbd0;
}
.voice_user.font_male {
    color: #2b7bc0;
    border-color: #bbdefb;
}

/* コメント本文 */
.voice_text {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* スマホ対応（画面幅600px以下の場合は1列にする） */
@media (max-width: 600px) {
    .user_voices_grid {
        grid-template-columns: 1fr;
    }
}
.inn_aday {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-top: 150px;
}

table.aday_table th {
    width: 30%;
    font-size: 24px;
    font-family: cursive;
}
table.aday_table th span {
	display: inline;
	
}
table.aday_table tr::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 16px solid transparent;
    border-top: 16px solid #69a3d8;
    position: absolute;
    bottom: -18px;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    transition: 0.5s;
	transform: translateY(0px);
}
table.aday_table tr.scrolled::before {
  opacity: 1;
transition: all 0.6s ease-out;
	transform: translateY(10px);
	
}
table.aday_table tr:nth-child(even) {
	background: #bbdcf4;
	    padding: 20px;
    display: flex
;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 35px;
 align-items: center;
	position: relative;
}
table.aday_table tr:nth-child(odd) {
    background: #fffcdb;
    padding: 20px;
    display: flex
;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 35px;
    align-items: center;
	position: relative;
}


.header-navigation .header-menu-container ul ul li.menu-item > a {
    width: 200px;
    padding-top: 1em;
    padding-bottom: 1em;
    color: var(--global-palette8);
    font-size: 15px !important;
}
.header-navigation .header-menu-container ul ul.sub-menu, .header-navigation .header-menu-container ul ul.submenu {
	background: #c2d4f8 !important;
}
.header-navigation .header-menu-container ul ul li.menu-item.current-menu-item > a {
	background: #5a97ff !important;
}
.about_jouken {
	font-size: 21px;
	position: relative;
	padding-left: 35px;
}
.about_jouken::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    background-color: #59bded;
    border-radius: 50%;
    width: 25px;
    height: 25px;
}
.tokutyou_box li {
	display: inline-block;
	width: 25%;
	padding: 10px;
	border: 1px solid #59bded;
	border-radius: 50%;
	text-align: center;
}
.tokutyou_title {
	color: #59bded;
    font-weight: 500;
    max-width: 260px;
    font-size: 18px;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
}
.saiyou_box a {
    margin: 0 auto;
    display: block;
    max-width: 250px;
    text-align: center;
    color: #fff !important;
}
table.saiyou {
     width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #fff;
}

    table.saiyou,table.saiyou th,table.saiyou td {
      border: 1px solid #ccc;
    }

    table.saiyou th,table.saiyou td {
      padding: 15px;
      text-align: left;
      vertical-align: top;
    }

    table.saiyou th {
      background-color: #f0f0f0;
      width: 25%;
    }

    .btn {
      display: inline-block;
      margin-top: 30px;
      padding: 12px 24px;
      background-color: #4caf50;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      font-size: 16px;
    }

    .btn:hover {
      background-color: #388e3c;
    }
.room-images-2 {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
      justify-content: space-between; /* ← 両端いっぱい＆均等配置 */
	margin-bottom: 10px;
}
.room-images-2 img {
    flex: 1;
    width: 18%;
}
.room-images-2.house2 img {
	max-width: 380px;
}

.room-images-2 img:hover,.room-images img:hover {
	opacity: 0.7;
	transition: 0.5s;
	cursor: pointer;
}
.room-images {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
      justify-content: space-between; /* ← 両端いっぱい＆均等配置 */
	margin-bottom: 35px;
}
.room-images img {
flex: 1;
    width: 30%;
}
.top_slide_main {
	display: flex;
}
.top_slide_1,.top_slide_2 {
	flex: 1;
}
.top_slide {
	position: relative;
	
}
.index-title_img {
    background: #ffffffe3;
    position: absolute;
    top: 38%;
    margin: 0 auto;
    left: 0;
    right: 0;
    max-width: 555px;
    border-radius: 10px;
    padding: 30px 0px;
}
.index-title_img::before {
    position: absolute;
    background-image: url(/img/flo_L.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 192px;
    height: 159px;
    left: -65px;
    top: -46px;
    content: "";
}
.index-title_img::after {
    position: absolute;
    background-image: url(/img/flo_R.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 192px;
    height: 159px;
    right: -105px;
    bottom: -31px;
    content: "";
}
table.company_box td span {
	margin-right: 10px;
	display: inline;
}
.company_box {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    padding: 69px;
    border-radius: 10px;
}

table.company_box th{
	text-align: left;
	vertical-align: top;
	width: 30%;
}
table.company_boxx th span {
	font-size: 0.8vw;
	color: #FF3135;
	margin-left: 15px;
}
table.company_box td {
	width: 70%;
}


table.company_box tr {
    display: flex
;
    margin-bottom: 30px;
    border-bottom: 6px dotted #becbff;
    padding-bottom: 20px;
}


.main-navigation .primary-menu-container > ul > li.menu-item > a {
    font-size: 16px;
}
.popup-drawer .drawer-inner {
    width: 100%;
    transform: translateX(100%);
    max-width: 90%;
    right: 0;
    top: 0;
    overflow: auto;
    background: #83b8ff !important;
    color: #fff;
    bottom: 0;
    opacity: 0;
    position: fixed;
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, .1);
    display: flex
;
    flex-direction: column;
    transition: transform .3s cubic-bezier(.77,.2,.05,1), opacity .25s cubic-bezier(.77,.2,.05,1);
}
section.entry-hero,.footer-html-inner {
	display: none;
}
body {
	background-image: url("/img/back_color.png") !important;
	background-repeat: repeat !important;
	
}
.top_con_2 {
	max-width: 960px;
	margin: 0 auto;
	margin-top: 150px !important;
	border-radius: 10px;
	padding: 30px;
	background: #fff;
	position: relative;
}
.top_con_1 {
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
	position: relative;
}
.top_con_2::before {
    content: "";
    background-image: url(/img/flower_blue.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 110px;
    height: 100px;
    position: absolute;
    right: 12%;
    top: -43px;

}
.top_con_3::before {
    content: "";
    background-image: url(/img/birds.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    height: 100px;
    position: absolute;
    left: -9%;
    top: -44px;
    animation: floatCloud 5s ease-in-out infinite;
}
.top_con_3::after {
    content: "";
    background-image: url(/img/flower_circle.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    height: 100px;
    position: absolute;
    left: 37%;
    top: -108px;
    animation: floatCloud 5s ease-in-out infinite;
}
.top_con_1::before {
	content: "";
	background-image: url(/img/cloud.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 200px;
	height: 100px;
	position: absolute;
	left: -23%;
	top: 50px;
 animation: floatCloud 5s ease-in-out infinite;
}
.top_con_1::after {
	content: "";
	background-image: url(/img/cloud2.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 200px;
	height: 100px;
	position: absolute;
	right: -25%;
	top: 50px;
 animation: floatCloud 5s ease-in-out infinite;
}
/* ふわふわ上下に揺れるアニメーション定義 */
@keyframes floatCloud {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
.map_topp_inn {
	display: flex;
}
.map_topp_inn li {
    margin: 25px 0 30px;
    list-style: none;
    flex: 1;
    border-bottom: 6px dotted #becbff;
    padding-bottom: 14px;
}
.map_topp_inn .map_topp_inn_L {
	width: 60%;
}
.map_topp_inn .map_topp_inn_R {
	width: 40%;
}
.map_topp_inn .map_topp_inn_R a {
    margin: 0 auto;
    text-align: center;
    position: relative;
    display: block;
    max-width: 280px;
    width: 100%;
    text-decoration: none;
    border-radius: 50px;
    padding: 20px 0;
}
.map_topp_inn .map_topp_inn_R a::after {
    position: absolute;
    left: 3px;
    top: 10px;
    content: "";
    background-image: url(/img/icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
}
.map_topp_inn .map_topp_inn_R a:hover::before{
	 transform: translateX(10px);
	transition: 0.5s;
}
.map_topp h3 {
	font-size: 28px;
	margin-bottom: 20px;
	position: relative;
	z-index: 10;
}
.top_con_3 h2,.top_con_2 h2 {
	position: relative;
	z-index: 10;
}
.map_topp h3::before,.top_con_3 h2::before,.top_con_2 h2::before {
    position: absolute;
    left: -19px;
    top: 3px;
    content: "";
    background-image: url(/img/beans.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 60px;
    height: 43px;
    z-index: -1;
}
.nagare_title {
    color: #59bded;
    font-weight: 500;
    width: 33%;
    max-width: 260px;
	font-size: 18px;
}
.nagare_box {
	max-width: 700px;
	margin: 0 auto;
	width: 100%;
}
.nagare_main {
    display: flex;
    gap: 20px;
    align-items: center;
}
.nagare_box {
	width: 80%;
}
.nagare_stuff {
	width: 20%;
}
.nagare_box li {
    display: flex
;
    margin-bottom: 25px;
     align-items: baseline;
}
.map_topp_inn .map_topp_inn_R a:before{
    position: absolute;
    right: 10px;
    top: 23px;
    content: "";
    background-image: url(/img/arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 32px;
    height: 25px;
    transition: 0.5s;
    transform: translateX(0);
}

.top_con_3 {
    max-width: 960px;
    margin: 0 auto;
    margin-top: 150px !important;
    border-radius: 10px;
    padding: 30px;
    background: #fff;
    position: relative;
}


.linl_aisatsu a {
    color: #333;
    max-width: 215px;
    width: 100%;
    display: block;
    margin: 0 auto;
    position: relative;
    text-decoration: none;
    background: #fff;
    text-align: center;
    padding: 15px 0;
    border-radius: 10px;
}
.top_con_2 p {
	margin: 0;
	padding: 0;
}
.map_topp {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px 10px 0 0;
    padding: 30px;
}
.linl_aisatsu a::after {
    position: absolute;
    left: 4px;
    top: 3px;
    content: "";
    background-image: url(/img/icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
}
.linl_aisatsu a:hover::before{
	 transform: translateX(10px);
	transition: 0.5s;
}
.linl_aisatsu a:before{
    position: absolute;
    right: 16px;
    top: 19px;
    content: "";
    background-image: url(/img/arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 32px;
    height: 25px;
    transition: 0.5s;
    transform: translateX(0);
}

.class_hr {
	display: block;
	width: 100%;
	border-bottom:6px dotted #becbff }
.linl_b {
    border-radius: 10px;
    max-width: 190px;
    width: 100%;
    display: block;
    float: right;
    margin-bottom: 55px;
	position: relative;
}
.linl_b::after {
	position: absolute;
	left: -60px;
	top: -11px;
	content:"" ;
	background-image: url(/img/icon.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 50px;
	height: 50px;
}
.linl_b:before{
	 transform: translateX(10px);
	transition: 0.5s;
}
.top_con_2 .linl_b a {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.top_con_2 .house_link a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	max-width:215px;
	border: 2px solid #becbff;
	border-radius: 10px;
	padding: 15px;
	text-align: center;
	text-decoration: none;
}
.top_con_2 .house_link {
	display: flex;
	gap:20px;
	justify-content: center;
	margin-bottom: 40px;
}

.top_con_2 .linl_b:before{
    position: absolute;
    right: 33px;
    top: 3px;
    content: "";
    background-image: url(/img/arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 32px;
    height: 25px;
    transition: 0.5s;
    transform: translateX(0);
}
.top_con_2 .linl_b:hover:before {
	 right: 28px;
	transition: 0.5s;
}
.top_con_2 img {
	width: 100%;
}
.top_con_1 h2 {
	text-align: center;
}
.top_con_1 h2 span {
	display: inline;
}
.side_top_text {
	transform: translateY(50px);
	opacity: 0;
}
.side_top_text.scrolled {
	transform: translateY(0px);
	transition: all 1s ease-out;
	opacity: 1;
}
.index-title_img h1 {
	font-size: 26px;
	text-align: center;
}
.index-title_img h1 span {
	display: block;
}
.top-title_img h1 {
	font-size: 1.5vw;
	text-align: center;
	
}
.site-header-row {
    padding: 10px 0 35px;
}
.top-title_img .title_eng{
    text-align: center;
    font-weight: 100;
    font-size: 1.3vw;
    font-family: ui-monospace;
    position: relative;
    bottom: -4px;
}
.top-title_img {
	position: relative;
	

}
.title_box {

}
.com_box {
	margin-bottom: 55px !important;
	max-width: 960px;
	margin: 0 auto;
}
#footer-menu a {
	font-size: 16px;
	margin-bottom: 10px;
	margin-top: 10px;
}
.site-header-item {
    display: flex
;
    align-items: end !important;
    margin-right: 10px;
    max-height: inherit;
}
.site-branding a.brand img {
    max-width: 278px !important;
}
.site-branding a.brand:hover {
	opacity: 0.7;
	transition: 0.5s;
}
#main-header {
	border-bottom: #eee solid 2px;
}
h1.top_logo_title {
    font-size: 14px !important;
    position: absolute;
    font-weight: 500 !important;
    width: 500px;
    bottom: -26px;
}
.content-bg, body.content-style-unboxed .site {
	background: #ffffff00 !important;
}
.foot_copy {
	text-align: center;
	margin-bottom: 35px;
	font-size: 14px;
}
.wpcf7-form-control.wpcf7-acceptance {
	text-align: center;
	display: block;
}
.entry.single-entry {
    box-shadow: none !important;
}
.site-header-section {
	position: relative;
}
.con_box {
	margin-top: 65px !important;
}
.contact_box {
	max-width: 900px;
	margin: 0 auto;
}
table.con_box th{
	text-align: left;
	vertical-align: top;
	width: 30%;
}
table.con_box th span {
	font-size: 0.6vw;
	color: #FF3135;
	margin-left: 15px;
}
table.con_box td {
	width: 70%;
}
table.con_box td textarea {
	height: 200px;
}
table.con_box td input{
	width: 100%;
	
}
table.con_box td.short_input input{
	width: 100%;
	max-width: 350px;
}
table.con_box td.check_input input,.wpcf7-form-control-wrap .wpcf7-list-item input{
    display: inline;
    width: 25px;
    height: 25px;
    position: relative;
    top: 6px;
    left: 0;
}
table.con_box tr {
	display: flex;
	margin-bottom: 30px;
}

.con_sub input.wpcf7-form-control {
	max-width: 270px;
	padding: 10px 0;
	margin: 0 auto;
	display: block;
	width: 100%;
}
.site-title {
	display: none;
}

	h1.top_logo_title br.hide-mob {
		display:none;
	}
.mobile-navigation ul li a {
    padding-top: 0.7em !important;
    padding-bottom: 0.7em !important;
    font-size: 5vw;
}
.foot_logo {
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 35px;
}
.site-bottom-footer-inner-wrap {
	padding: 0 !important;
}
/*///podd//*/
@media screen and (max-width: 1024px) {
	.footer-navigation .menu {
    display: flex
;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}
	
	.footer-navigation ul li a {
    padding: 0.6em 0.5em !important;
}
	
	.mobile-toggle-open-container {
		position: relative;
	}
	.mobile-toggle-open-container::after {
        position: absolute;
        bottom: -11px;
        content: "Menu";
        margin: 0 auto;
        right: 0;
        left: 2px;
        font-size: 12px;
    }
}


/*///mobb//*/
@media screen and (max-width: 480px) {
	table.aday_table td span {
		display: block;
	}
	table.aday_table tr {
		flex-direction: column;
		padding: 10px 18px !important;
	}
	table.aday_table td{
	display: block;
		width: 100%;
}
		table.aday_table th{
	display: block;
		width: 100%;text-align: left;
}
	.site-header-item {
    display: flex
;
    align-items: start !important;
    margin-right: 10px;
    max-height: inherit;
}
	.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    width: 100%;
    height: auto;
}
	.slider-container {
    width: 350%;
    overflow: hidden;
}
	.slider-container2 {
    width: 350%;
    overflow: hidden;
    margin-bottom: 10px;
}
	.map_topp {
    max-width: 960px;
    width: 85%;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px 10px 0 0;
    padding: 30px 15px;
}
	.room-images-2 {
    display: flex
;
    gap: 2px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 4px;
}
	.room-images-2 img {
    flex: 1;
    width: 18%;
}
	.room-images-2 {
    display: flex
;
    gap: 2px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 4px;
}
	.room-images {
    display: flex
;
    gap: 2px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}
	.room-images img {
    flex: 1;
    width: 29%;
}
	.map_topp_inn .map_topp_inn_R {
    width: 100%;
}
	.map_topp_inn .map_topp_inn_L {
    width: 100%;
}
	.map_topp_inn {
    display: flex
;
    flex-direction: column;
    width: 100%;
}
	table.saiyou th,table.saiyou td {
	display: block;
	width: 100%;
}
	table.company_box td span {
	margin-right: 0px;
	display: block;;
}
	.company_box {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    width: 100%;
}
	table.company_box td {
    width: 100%;
}
	table.company_box th {
    text-align: left;
    vertical-align: top;
    width: 100%;
}
	table.company_box tr {
display: flex
;
        margin-bottom: 20px;
        border-bottom: 6px dotted #becbff;
        padding-bottom: 15px;
        flex-direction: column;
    }
	.index-title_img h1 {
    font-size: 4.3vw;
    text-align: center;
}
	.footer-navigation .menu {
    display: flex
;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}
	.site-branding a.brand img {
    max-width: 220px !important;
}
	.top_con_1 h2 {
    text-align: center;
    font-size: 18px;
}
	.top_con_1::before {
    content: "";
    background-image: url(/img/cloud.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 91px;
    height: 47px;
    position: absolute;
    left: -9%;
    top: -25px;
    animation: floatCloud 5s ease-in-out infinite;
}
	.nagare_box {
    width: 100%;
    margin-top: 20px;
}
	.nagare_stuff {
    width: 45%;
}
	.nagare_box li {
    display: flex
;
    margin-bottom: 25px;
    flex-direction: column;
}
	.nagare_title {
    color: #59bded;
    font-weight: 500;
    width: 100%;
    max-width: 260px;
    font-size: 18px;
}
	.nagare_main {
    display: flex
;
    gap: 20px;
    align-items: center;
    flex-direction: column;
}
	.top_con_3::after {
    content: "";
    background-image: url(/img/flower_circle.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 67px;
    height: 59px;
    position: absolute;
    left: 72%;
    top: -50px;
    animation: floatCloud 5s ease-in-out infinite;
}
	.top_con_3::before {
    content: "";
    background-image: url(/img/birds.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 42px;
    height: 69px;
    position: absolute;
    left: -5%;
    top: -44px;
    animation: floatCloud 5s ease-in-out infinite;
}
	.top_con_3 {
    max-width: 960px;
    margin: 0 auto;
    margin-top: 50px !important;
    border-radius: 10px;
    padding: 30px 15px;
    background: #fff;
    position: relative;
}
		.top_con_4 {
    max-width: 960px;
    margin: 0 auto;
    margin-top: 50px !important;
    border-radius: 10px;
    padding: 30px 15px;
    background: #fff;
    position: relative;
}
	.top_con_3 h2, .top_con_2 h2,.top_con_2 h3,.top_con_4 h2 {
    position: relative;
    z-index: 10;
    font-size: 21px;
}
	.top_con_2::before {
    content: "";
    background-image: url(/img/flower_blue.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 64px;
    height: 62px;
    position: absolute;
    right: 2%;
    top: -2px;
}
	.top_con_2 {
    max-width: 960px;
    margin: 0 auto;
    margin-top: 50px !important;
    border-radius: 10px;
    padding: 30px 15px;
    background: #fff;
    position: relative;
}
	.map_topp h3::before, .top_con_3 h2::before, .top_con_2 h2::before {
    position: absolute;
    left: -9px;
    top: -2px;
    content: "";
    background-image: url(/img/beans.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 48px;
    height: 36px;
    z-index: -1;
}
	.map_topp h3 {
    font-size: 21px;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}
	.top_con_1::after {
    content: "";
    background-image: url(/img/cloud2.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 119px;
    height: 51px;
    position: absolute;
    right: -17%;
    top: inherit;
    animation: floatCloud 5s ease-in-out infinite;
    bottom: 59px;
}
.top_con_1 h2 span {
    display: block;
}
	.site-header-row {
    padding: 40px 0 5px;
}
	.index-title_img::before {
    position: absolute;
    background-image: url(/img/flo_L.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 104px;
    height: 80px;
    left: -42px;
    top: -18px;
    content: "";
}
	.index-title_img::after {
    position: absolute;
    background-image: url(/img/flo_R.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 75px;
    height: 77px;
    right: -38px;
    bottom: -14px;
    content: "";
    z-index: 1;
}
.index-title_img {
    background: #ffffffe3;
    position: relative;
    top: inherit;
    margin: 0 auto;
    left: 0;
    right: 0;
    max-width: 555px;
    border-radius: 10px;
    padding: 9px 0px;
    width: 85%;
    bottom: -18px;
}
	h1.top_logo_title {
        font-size: 3.5vw !important;
        position: absolute;
        bottom: inherit;
        top: -37px;
        font-weight: 500 !important;
        line-height: 17px;
    }
	h1.top_logo_title span.sp-hide-pipe {
		display: none;
	}
	
	h1.top_logo_title br.hide-mob {
		display: block;
	}
	
	h1.top_logo_title 
	.site-title-wrap .site-title {
    font-size: 3.8vw !important;
    position: relative;
    bottom: -16px;
    font-weight: 500 !important;
}
	.con_box {
    margin-top: 65px !important;
    margin-bottom: 0 !important;
}
	.wpcf7-quiz-label {
	        margin: 15px 0;
        display: block;
    }
	.wpcf7-list-item {
		margin-bottom: 10px;
	}
	table.con_box th span {
    font-size: 3.5vw;
    color: #FF3135;
    margin-left: 15px;
}
	table.con_box td {
    width: 100%;
}
	table.con_box th {
    text-align: left;
    vertical-align: top;
    width: 100%;
}
	table.con_box tr {
    display: flex
;
    margin-bottom: 30px;
    flex-direction: column;
}
	.top-title_img .title_eng {
    text-align: center;
    font-weight: 100;
    font-size: 5.3vw;
    font-family: ui-monospace;
    position: relative;
    bottom: 1px;
}
	.top-title_img h1 {
    font-size: 6.5vw;
    text-align: center;
}
	
	
}