@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/*見出し*/

/* 固定ページ H1：中央＋左右に横線 */
.page h1.c-pageTitle,
.blog h1{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;              /* 文字と線の間隔 */
  text-align: center;
  font-weight: 500;       /* お好みで */
	font-size:2em;
}

/* 左右の横線 */
.page h1.c-pageTitle::before,
.page h1.c-pageTitle::after ,
.blog h1.c-pageTitle::before,
.blog h1.c-pageTitle::after {
  content: "" !important;
  width: 40px;            /* 線の長さ（短め） */
  height: 2px;            /* 線の太さ */
  background-color: #000; /* 色（テーマに合わせて変更OK） */
	visibility: visible;
}

/* 固定ページ タイトル下のデフォルト装飾を消す */
.page .c-pageTitle,
.blog .c-pageTitle{
  border-bottom: none;
}

.c-pageTitle[data-style=b_bottom] .c-pageTitle__inner{
	border-bottom:none;
}

/*固定ページh2
.page .post_content > h2{
	padding:0.5em;
	border-bottom:1px solid #000;
}*/



.home .post_content .wp-block-group__inner-container > h2 {/*トップページ見出し*/
  display:block;   
  position: relative;
  text-align: center;
  font-size: 2em;
  padding-bottom: 12px;
  margin: 40px auto;       /* 中央寄せ */
  background-color: transparent !important;
	color:#000;
	border:none;
}
.home .post_content .wp-block-group__inner-container > h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background-color: #000;
}









.link_text a{
	text-decoration:none;
}

.link_text a::after{
	padding-left:5px;
	content:"\f054";
	top:50%;
    font-family: FontAwesome;
}
.link_text a:hover{
	color:#000;
}

/*ホームアクセス*/
.swell-block-dl {
	padding-top:1em;
	padding-bottom:1em;
	margin-bottom:0;
	border-bottom:1px solid #ccc;
}
.is-style-float>.swell-block-dl__dt:after {
	display:none;
}

.google_map{
	 overflow: hidden;
	border-radius:10px;
}


/*ホームよくある質問*/
.home .home_faq .swell-block-accordion__title{
	border-radius:5px;
}
.home .home_faq .swell-block-accordion__title .swell-block-accordion__label::before {
    content: "Q ";
    font-weight: bold;
    color: var(--color_faq_q);
    margin-right: 6px;
}

.home .home_faq .icon-caret-down:before {
    content: "\e93b";
}

.home .home_faq .icon-caret-up:before {
    content: "\e904";
}


/*ふわっと表示*/
.fadein{
	opacity: 0;
	transform: translateY(30px);
	transition-property: transform, opacity;
	transition-duration: 1.5s;
	transition-delay: 0s;
}

.fadein.is-active {
	opacity: 1;
	transform: translateY(0);
}



/*客室・設備*/
/* PC表示：横並び、交互 */
        .feature-row:nth-child(even){
            display: flex;
            flex-direction: row-reverse; /*左右入れ替え*/
             }
            
             @media(max-width : 750px ){
                .feature-row:nth-child(even){
                display: block;
                 }
            }
            
            .feature-row:nth-child(odd){
              display: flex;
               }
            @media(max-width : 750px ){
                .feature-row:nth-child(odd){
               display: block;
               }
              }


/*FAQ*/
.page-id-18 .c-tabBody{
	padding-top:2em;
}


