@charset "UTF-8";

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    font-family: serif;
}

    body {
      margin: 0;
      /*font-family: "Segoe UI", sans-serif;*/
      font-family: 'Hiragino Mincho ProN', 'Yu Mincho', 'MS PMincho', serif;
      background-color: #ffffff;
      color: #222;
    }

span {
    display: inline-block
}


.demo_BG {
    background-image: url("../img/bgimage.webp"); /* デジタル風の背景装飾（別途用意） */
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100%;
    background: cover;
}

    .header {
      padding: 40px 20px 20px;
      text-align: center;
    }
    .header h1 {
      font-size: 32px;
        margin-bottom: 8px;
    }

.header img {
    width: min(320px, 70%);
    margin-bottom: 120px;
}

section {
    width: min(950px,90%);
    margin: 0 auto 80px;
}

.text_box p {
    font-size: 1.2rem;
    line-height: 2.5;
}

.name {
    display: flex;
    column-gap: 24px;
    justify-content: flex-end;
    align-items: center;
    margin: 24px auto 64px;
}

.name img {
    width: min(200px, 100%);
}


    .footer {
      text-align: center;
      padding: 40px 20px;
    }
    .social-icons a {
      margin: 0 10px;
      display: inline-block;
      width: 40px;
      height: 40px;
    }
    .social-icons img {
      width: 100%;
      height: auto;
    }
    .logo {
      margin-top: 20px;
    }


/*ロゴエリア====================*/
.logo_box {
    width: min(1200px,90%);
	height:94px;
    margin: 0 auto;
}

.logo_box1 {
    display: flex;
	margin-top:24px;
    margin-left: 40px;
}

.logo_box1 img {
    width: min(240px,100%);
}


/*footer*/

.footer_box {
	padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
	flex-wrap: wrap;
	grid-row-gap: 32px;
}

.footer_box1 {
    width: min(400px,100%);
    display: flex;
    justify-content: center;
    column-gap: 24px;
}

#footer {
    width: 100%;
    margin: 0 auto;
    padding: 50px 50px;
    text-align: center;
    font-size: 0.8rem;
    color: #000000;
}


/* スマホサイズのレスポンシブ対応ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (max-width: 959px) {
        
}

/* スマホサイズのレスポンシブ対応ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (max-width: 768px) {
     
    span {
        display: inline;
    }
    
    /*footer*/

.footer_box {
    flex-wrap: wrap;
    grid-row-gap: 24px;
}

    
}

/* スマホサイズのレスポンシブ対応ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (max-width: 450px) {
    
    .header h1 {
      font-size: 28px;
    }
    
    
}

