@charset "utf-8";



body{
    background-image: url(./b033.gif);
}

a {
  font-size: 100%;
}


/* タイトル */
h1 {
    padding: 10px 10px 10px 10px;
    color: White;
    font-size: 180%;
    font-weight: bold;
    background-color: #008000;
    border-radius: 10px;
}


/* ===========================
 よく使われる枠（後で削除）
=========================== */
/*大枠* /
header,footer,nav,main{
  margin:2px;
  border: 2px solid #F00;
}
/**/
/*小枠* /
div,ul{
  margin:2px;
  border: 2px solid #00F;
}
li,form,img,h1,h2{
  margin:2px;
  border: 1px solid #0f0;
}
/**/




/* コンテンツ */

.content {
    display: flex;
    align-items: flex-start;
}

.content__item {
    flex: 1;
}

.content__item__title {
    font-size: 500%;
    font-weight: bold;
    color: #008000;
    text-align: center;
    padding: 30px 0px 30px 0px;
    text-shadow: 3px 1px 3px #000;
}


.content__item__flex {
    display: flex;
}

.content__item__text__title {
    width: 80px;
    height: 36px;
    color: White;
    font-size: 100%;
    background-color: #008000;
    border-radius: 10px;
    text-align: center;

    margin: 10px 10px 10px 0px;
    padding: 5px 0px 5px 0px;
}


.content__item__text {
    margin: 10px 10px 10px 0px;
    padding: 5px 0px 5px 10px;
}

.content__item__text2 {
    margin: 0px 0px 20px;
    padding: 0px;
}


.content__circle {
    display: flex;
    align-items: center;
}


.circle{
    position: relative;
    display: inline-block;

    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align:center;
    line-height: 80px;
}

.circle span {
    font-size: 120%;
    font-weight: bold;
    color: white;

    position: absolute;
    display: inline-block;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width :100px;
    text-align:center;
}

.circle__odd {
    background: IndianRed;  /*背景色*/
}
.circle__even {
    background: skyblue;    /*背景色*/
}

.circle__text {
    font-size: 80%;
}

/*連絡先*/

.contacts_back {
    background-color: #2DB450;
    color: White;

    padding: 10px;
}

.contacts {
    display: flex;
    background-color: #2DB450;

    padding: 0px;
    margin: 10px;
}

.contacts__item {
    flex: 1;
}

.contacts__text {
    font-size: 160%;
    font-weight: bold;

    padding: 0px;
    margin: 0;
}

.contacts__text__big {
    font-size: 180%;
    padding: 0px;
    margin: 0;
}

.contacts__title {
    font-weight: bold;

    padding: 0px;
    margin: 10px 0 0 0px;
}

.contacts__tel {
    font-size: 200%;

    padding: 0px;
    margin: 0px;
}

.contacts__text__color {
    color: #008000;
}


/* レスポンシブ */
@media screen and (max-width:768px) {
    .l-wrap {
        width: 100%;
        padding: 10px 10px 0 10px;
    }

    .content {
        align-items: center;
        flex-direction: column;
    }

    .content__item__flex {
        flex-direction: column;
    }

    .content__item__title {
      font-size: 400%;
    }

    .content__item__text {
        margin: 0px 0px 20px;
        padding: 0px;
    }

    .contacts {
        flex-direction: column;
    }

    .contacts_back {
        padding: 10px;
    }

    .contacts {
        margin: 0px;
    }

    .contacts__title {
        font-weight: normal;
    }

    .contacts__text {
        font-weight: normal;
        margin: 10px 0 0 0;
    }

    .contacts__text__big {
      font-size: 160%;
    }

    .contacts__tel {
        font-size: 150%;
        margin: 10px 0 0 0;
    }


}

