@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
}
body{
    line-height: 1.7;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}
.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4%;
}

/* 大きな背景画像 */
.big-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* 見出し装飾 */

.allowdrop {
    position: relative;
    border-bottom: 2px solid #999;
    background: #fff;
    color: #000;
    text-align: center;
    font-size: xx-large;
    padding: 30px 0 10px;
    margin: 0;
}
    /* 下三角 */ 
    .allowdrop:before{
        content: "";
        position: absolute;
        bottom: -44px;
        left: 47.2%;
        border: 22px solid transparent;
        border-top: 22px solid #fff;
        z-index: 4;
    }
    .allowdrop:after {
        position: absolute;
        border: 24px solid transparent;
        border-top-color: #999;
        border-bottom-width: 0;
        bottom: -25px;
        content: "";
        left: 47%;
        z-index: 3;
    }

.img_layout1{
    display: block;
    margin: 0 auto;
}
.img_layout2{
    display: block;
    margin: 2% auto 0;
}



.box8{
	padding-left:8px;
	color:#232323;
	border-left:double 10px rgba(8,199,211,1.00);
}

.box8 p{
	margin:0;
	padding:0;
}

/* 見出し */
.page-title {
    font-size: 2.5rem;
    font-family: 'Kosugi Maru', sans-serif;
    text-transform: uppercase;
    font-weight: normal;
	color: #000;
}
.page-title01 {
    font-size: 2.5rem;
    font-family: 'Kosugi Maru', sans-serif;
    text-transform: uppercase;
    font-weight: normal;
	color: #FFF;
}

/* ボタン */
.button {
    font-size: 1.375rem;
    background: #0bd;
    color: #fff;
    border-radius: 5px;
    padding: 18px 32px;
}
.button:hover {
    background: #0090aa;
}

.button_alt {
    font-size: 0.9rem;
    background: #0bd;
    color: #fff;
    border-radius: 5px;
    padding: 9px 18px;
}
.button_alt:hover {
    background: #0090aa;
	color: #fff;
}
/* iframe */
iframe {
    width: 100%;
}

/* HEADER
------------------------------- */
.page-header {
    display: flex;
    justify-content: space-between;
}
.logo {
    width: 210px;
    margin-top: 14px;
}

/* HOME
------------------------------- */
#home {
    background-image: url(../img/main-bg.jpg);
    min-height: 100vh;
}
#home .page-title {
    text-transform: none;
}
.home-content-mo {
    text-align: center;
}
.home-content-mo p {
    font-size: 1.125rem;
    margin: 0px 0 0px;
}
.home-content-pc {
    text-align: center;
}
.home-content-pc p {
    font-size: 1.125rem;
    margin: 0px 0 0px;
}

/* NEWS
------------------------------- */
#sns_01 {
	position: relative;
    background-color: aqua;
    height: 50vh;
}
#sns_01 .page-title {
	position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform : translate(-50%,-50%);
  transform : translate(-50%,-50%);
  width: 200px;
  text-align: center;/*一応BOX内の文字も中央寄せ*/
}
#sns_02 {
	position: relative;
	background-image: url(../img/sss-bg.jpg);
	height: 50vh;
}
#sns_02 .page-title {
	position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform : translate(-50%,-50%);
  transform : translate(-50%,-50%);
  width: 200px;
  text-align: center;/*一応BOX内の文字も中央寄せ*/
}
#info {
	position: relative;
    background-image: url(../img/info.jpg);
    height:  50vh;
}
#info .page-title01 {
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform : translate(-50%,-50%);
    transform : translate(-50%,-50%);
    width: 200px;
    text-align: center;/*一応BOX内の文字も中央寄せ*/
}

.news_block {
    margin: 0 auto;
    width: 100%;
    padding: 0 2% 0;
}

.slide_news {
    padding: 1.2% 1%;
    border: solid 1px #aaa;
    margin: 0 auto 3%;
}

ul.slider.slider_layout {
    padding: 0 0 0 2%;
    list-style: none;
}



#news{
    position: relative;
    background-image: url(../img/news_catch.jpg);
    height:  35vh;
}
#news .page-title01 {
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform : translate(-50%,-50%);
    transform : translate(-50%,-50%);
    width: 200px;
    text-align: center;/*一応BOX内の文字も中央寄せ*/
}


/* contents
------------------------------- */
#contents {
    background-image: url(../img/contents-bg.jpg);
    min-height: 50vh;
}
.contents-content {
}
.contents-content .page-title {
    text-align: center;
}
.contents-content p {
    font-size: 1.125rem;
    margin: 10px 0 0;
}


/* モバイル版
------------------------------- */
@media (max-width: 600px) {
    .page-title {
        font-size: 2.5rem;
    }
    .page-header {
        flex-direction: column;
        align-items: center;
    }

    /* HEADER */

    /* HOME */
	.home-content-mo {
        margin-top: 0;
    }
    .home-content-pc {
        margin-top: 30%;
    }
    /* NEWS */
    .news-contents {
        flex-direction: column;
    }
    #news .page-title {
        margin-top: 30px;
    }
    article,
    aside {
        width: 100%;
    }
    aside {
        margin-top: 60px;
    }
    .post-info {
        margin-bottom: 30px;
    }
    .post-date {
        width: 70px;
        height: 70px;
        font-size: 1rem;
    }
    .post-date span {
        font-size: 0.875rem;
        padding-top: 2px;
    }
    .post-title {
        font-size: 1.375rem;
    }
    .post-cat {
        font-size: 0.875rem;
        margin-top: 10px;
    }
    .post-title,
    .post-cat {
        margin-left: 80px;
    }

    /* 店舗情報・地図 / SNS */
    #location .wrapper,
    #sns .wrapper {
        flex-direction: column;
    }
    .location-info,
    .location-map,
    .sns-box {
        width: 100%;
    }
    .sns-box {
        margin-bottom: 30px;
    }
}


.font_size_small{
	font-size: small;
}
.font_size_medium{
	font-size: medium;
}
.font_size_large{
	font-size: large;
}
.font_size_x-large{
	font-size: x-large;
}
.font_size_xx-large{
	font-size: xx-large;
}
.font_size_xxx-large{
	font-size: 50px;
}
.font_size_ex-large{
	font-size: 12rem;
}
.font_size_ex-small{
	font-size: 15px;
}
.font_size_18px{
	font-size: 18px;
}
.font_size_24px{
	font-size: 23.5px;
}
.font_size_41px{
	font-size: 41px;
}
.font_sixe_12px{
	font-size: 12px;
}
a {color: #668E6E;}
a:hover {color: #7DF77E;}

.margin_top{
	margin-top:30%;
}

.dropdown-toggle::after {
    display:none;
}

.font_space {
	letter-spacing: 0.4em
}

#contact {
    background-color: lightgoldenrodyellow;
}

#contact_sub {
    background-color: lightcyan;
}
.padding100{
	padding:50px 0 0 0; 
}

.text-shadow111{
	text-shadow: 0px 0px 8px #000;
}


.q_and_a_contents_innner {
    padding-top: 100px;
    margin-top:-100px;
}

.line01 {
position: relative;
  overflow: hidden;
  padding: 1.5rem 2rem 1.5rem 130px;
  border-top: 3px solid #000;
}

.line01:before {
  position: absolute;
  top: -150%;
  left: -100px;
  width: 200px;
  height: 300%;
  content: '';
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
  background: #000;
}

.line01 p {
  font-size: 4rem;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  padding-top: 3px;
  padding-left: 16px;
  color: #fff;
}

.no-hover {
    pointer-events: none;
}

/* スコア表(2021-12-27追加) */
.score-list a {
  width: 100%;
  display: block;
  margin: 0 auto;
  color: wheat;
  text-align: center;
  max-width: 200px;
  padding: 0.3rem 0;
}

.score-list a:hover {
  color: wheat;
}

/* 見学お申し込みのテキストカラー変更(白) */
.d-sm-block.d-none.font_size_large.text-center a {
  color: wheat;
}

#office-information-movie {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto 4%;
  aspect-ratio: 16 / 9;
}

.office-movie-box h5 {
  text-align: center;
  font-size: 1.5rem;
  padding: 0 0 2%;
  font-family: system-ui;
}

.movie-block {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.movie-block iframe {
  width: 100%;
  height: 100%;
}

.office-movie-text {
  padding: 0 4%;
  margin: 3% auto 0;
}

span.tool-name_title {
  display: block;
  margin: 0 auto 1%;
}