﻿@charset "utf-8";
.logo {
    margin: 30px 0 0 0;
}
.box1 {
    margin: 0 0 30px 0;
    background-color: #fff;
    padding: 0 30px 30px 30px;
    border-radius: 10px;
}
h1 {
    margin: 30px 0 20px 0;
    padding: 20px 0 10px 0;
    font-size: 1.4em;
    border-bottom: solid 6px #3e0857;
    position: relative;
    text-align: center;
}
h1:after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 6px #e20909;
    bottom: -6px;
    width: 50%;
}
h2,h3,h4,h5 {
    margin: 20px 0 10px 0;
    padding: 10px 10px 10px 16px;/*文字周りの余白*/
    color: #494949;/*文字色*/
    background: #eee;/*背景色*/
    border-left: solid 5px #3e0857;/*左線（実線 太さ 色）*/
    border-radius: 10px;
    font-size: 1.2em;
}
.button1 {
    margin: 0 0 10px 0;
}
.button1 a {
    display: block;
    max-width: 200px;
    width: 100%;
    height: 20px;
    padding: 8px 20px 3px 20px;
    background-color: #D8533B;
    color: #fff;
    font-weight: bold;
    border-radius: 10px;
    text-align: center;
}
.button1 a:hover {
    text-decoration: none;
    background-color: #e8735B;
}
.grid1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    justify-content: space-between;
}
.grid1 div img {
    width: calc(100% - 5px);
    height: auto;
}
.phone:before {
    content: "TEL: ";
    font-weight: normal;
}
.fax:before {
    content: "FAX: ";
    font-weight: normal;
}
@media screen and (min-width:480px){
}
@media screen and (min-width:768px){
}