@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
}
body{
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    line-height: 1.7;
    color: rgba(0,32,96,1);/*文字色*/
    background-color:rgba(204,255,255,1);
}
a {
    text-decoration: none;
    color:black;
}
img {
    max-width: 100%;
}
.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4%;
}


/* 見出し */
.page-title {
    font-size: 5rem;
    font-family: 'Philosopher', serif;
    text-transform: uppercase;
    font-weight: normal;
    background-image:url('../image/title.png');
    height:100px;
    background-size:contain;
    background-position:center;
}

.sub-title {
    font-size: 2rem;
    padding: 1.5rem 8px 8px;
    border-bottom: 2px blue solid;
    font-weight: normal;
    text-align:center;
}

.back {
    font-size: 2rem;
    padding: 1.5rem 8px 8px;
    font-weight: normal;
    text-align:center;
}

/* MENU
------------------------------- */
.grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 6%;
  margin-bottom: 50px;
}

.item {
  margin:10px;
  padding:0px;
}

.item p {
  text-align:center;
}


/* フッター
------------------------------- */

#illumi_footer {
/*    background-color:#63493d;  */
    background-color:#9db6c2;
    height:150px;
    color:black;
    text-align:center;
    line-height:40px;
    margin-top:0px;
    background-size:500px;   
    background-repeat:repeat-x;
    background-position:bottom;
    background-image:url('../image/line01.png');
    filter:invert();
    min-width:1000px;
}

/* てらちゃんを探せ
------------------------------- */
/*　吹き出し　*/
/* 左右共通のスタイリング */
.left-side,
.right-side {
    width: 100%;
    margin: 20px 0;
    overflow: hidden;
}
.icon {
    width: 100px;
    text-align: center;
}
.icon img {
    width: 70px;
    height: 70px;
    border: solid 1px #ccc;
    border-radius: 50%;
}
.icon p {
    margin: 0px;
    word-wrap: break-word;
}
.bubble {
    max-width: 70%;
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    background: #f5f5f5;
    position: relative;
    color:black;
}
.bubble::before{
    content: "";
    width: 0;
    height: 0;
    border: 10px solid transparent;
    position: absolute;
}
/* 左側表示の吹き出しのスタイリング */
.left-side .icon {
    float: left;
    margin-left: 10px;
}
.left-side .bubble{
    margin: 10px 0 0 20px;
}
.left-side .bubble::before{
    top: 15px;
    left: -20px;
    border-right-color: #f5f5f5;
}
/* 右側表示の吹き出しのスタイリング */
.right-side .icon {
    float: right;
    margin-right: 10px;
}
.right-side .bubble{
    float: right;
    margin: 10px 20px 0 0;
}
.right-side .bubble::before{
    top: 15px;
    right: -20px;
    border-left-color: #f5f5f5;
}


