body {
    margin: 0;
    text-align: center;
    background: linear-gradient(to bottom, #F8A98E, #fceabb);
}

/* メイン */
.main{
    font-family: 'Yu Gothic', Arial, sans-serif;
}

body {
    background-image:url("../img/ipadBG.png");
    background-size:cover;
    background-position:center;
}
@media screen and (max-width:480px){
    
 body{background-image:url("../img/smartphoneBG.png");
        background-size:cover ;
        background-position:center;
}}

.maegaki {
    img {width: 90%;
    margin-top: 1.5rem;}
}
.logo{
    img{width:70%;
    max-width:700px;}
}
img.logo2{
    box-shadow: 10px 10px #ff6347;
}
.kiitemitene{
    text-align: center;
    img{width:80%;
}}
.map{
    text-align:center;
    img{width:80%;}
}
.page-title {
    font-size: 2.5em;
    margin: 20px auto;
    color: #fff;
    background-color: #ff6347;
    width: 50%;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

/* 項目タイトル（雲のデザイン） */
.article_title {
    background-color: #fff;
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    font-size: 1.5em; /* フォントサイズを変更 */
    color: #333; /* フォントカラーを変更 */
    border-radius: 50px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1; /* 追加 */
}

/* 雲の装飾 */
.article_title::before, .article_title::after {
    content: "";
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    z-index: -1; /* 追加 */
}

.article_title::before {
    width: 50px;
    height: 50px;
    top: -20px;
    left: 10px;
}

.article_title::after {
    width: 60px;
    height: 60px;
    top: -30px;
    right: 10px;
}

/* コンテンツ */
h1 {
    text-align: center;
    margin:20px auto;
    width: 60%;
    color: #494949;/*文字色*/
    background: #f4f4f4;/*背景色*/
    border-left: solid 5px #ff6347;/*左線*/
    border-bottom: solid 3px #d7d7d7;/*下線*/
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.letter {
    text-align: center;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    margin: 26px auto 0;
    max-width: 550px;
    padding: 24px;
    position: relative;
    width: 80%;
    z-index:1;
  }
  .letter:before, .letter:after {
    content: "";
    height: 98%;
    position: absolute;
    width: 100%;
    z-index: -1;
  }
  .letter:before {
    background: #fafafa;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    left: -5px;
    top: 4px;
    transform: rotate(-2.5deg);
  }
  .letter:after {
    background: #f6f6f6;
    box-shadow: 0 0 3px rgba(0,0,0,0.2);
    right: -3px;
    top: 1px;
    transform: rotate(1.4deg);
  }
.content_title {
    position:relative;
    font-size: 1.5em;
    color: #333;
    padding-bottom: 10px;
    margin-bottom: 10px;
    text-align: left;
}

.content {
    text-align: left;
    font-size: 1.em; /* フォントサイズを変更 */
    color: #555; /* フォントカラーを変更 */
    p{
        padding-left:5%;
    }
}

/* フッター */
.footer_upper {
    background-color: #239CA0;
    color: white;
    padding: 15px;
    font-size: 1.2em;
}

.footer_lower {
    background-color: #465DAA;
    color: white;
    padding: 15px;
    font-size: 1.2em;
}


.footer_lower a {
    color: #ffffff; /* リンクのテキスト色を白にする */
    text-decoration: none; /* 下線を消す */
}

.privacy-link {
    margin-left: 20px; /* リンクとテキストの間隔を開ける */
    color: #ffffff; /* リンクのテキスト色を白にする */
}