@charset "utf-8";
/* CSS Document */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	box-sizing: border-box;
	-moz-tab-size: 4;
	tab-size: 4;
	word-break: normal
}

body {
	color: #333;
	font-family: "Meiryo", sans-serif;
	min-height: 100vh;
    padding: 40px 0;
    background-image: url("../img/bg.jpg");
    background-size: cover;
}

@media screen and (max-width: 1024px) {
    body {
        padding: 15px;
    }
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

li {
	list-style: none;
}

a {
  color: #333;
  text-decoration: none;
  transition: all 0.5s ease;
}

a:hover {
  opacity: 0.8;
  transition: all 0.5s ease;
}

.inner {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

#header {
    margin-bottom: 40px;
}

#header .inner {
    max-width: 960px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 20px;
    padding: 24px 0;
    box-shadow: inset -5px -5px 10px 0px rgba(255, 255, 255, 0.5), inset 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

#header h1 a p {
    font-size: 22px;
    text-align: center;
    margin-top: 3px;
    color: #7C7C7C;
    letter-spacing: 2px;
}

@media screen and (max-width: 767px) {
    #header h1 a img {
        width: 240px;
    }
    #header h1 a p {
        font-size: 18px;
    }
}

main {
    margin-bottom: 40px;
}

.contents_item {
    background-color: #fff;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    box-shadow: inset -5px -5px 10px 0px rgba(255, 255, 255, 0.5), inset 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

.blog_contents {
    width: 100%;
    padding: 38px;
}

.blog_contents .title {
    margin-bottom: 36px;
    color: #FF8400;
    text-align: center;
    font-size: 26px;
}

.blog_contents .blog_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.blog_contents .blog_list li {
    width: 48%;
    background-color: #F6F4EC;
    margin-bottom: 4%;
    box-shadow: 2px 4px 8px -2px #333;
    border-radius: 0 15px 15px 0;
    border: 6px solid #FF7900;
    transition: all 0.2s ease;
}

.blog_contents .blog_list li:hover {
    transform: translateY(4px);
    box-shadow: none;
    transition: all 0.2s ease;
}

.blog_contents .blog_list li a {
    display: flex;
    align-items: center;
}

.blog_contents .blog_list li a .img {
    margin-right: 36px;
    width: 98px;
    padding: 7px;
    background-color: #FF7900;
    position: relative;
    display: inline-block;
}
.blog_contents .blog_list li a .img::after {
    content: "";
    position: absolute;
    top: 0;
    right: -20px;
    width: 0;
    height: 0;
    border-left: 20px solid #FF7900;
    border-top: 49px solid transparent;
    border-bottom: 49px solid transparent;
}

.blog_contents .blog_list li a p {
    color: #FF7900;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
}


@media screen and (max-width: 1024px) {
    .blog_contents .remo {
        max-width: 120px;
        bottom: -40px;
        right: 8px;
    }
    .blog_contents .del {
        max-width: 120px;
        top: -80px;
        left: 8px;
    }
}

@media screen and (max-width: 767px) {
    .blog_contents {
        padding: 36px 14px;
    }
    
    .blog_contents .title {
        margin-bottom: 28px;
        margin-top: 12px;
        font-size: 20px;
    }

    .blog_contents .blog_list {
        flex-direction: column;
    }

    .blog_contents .blog_list li {
        width: 100%;
        margin-bottom: 18px;
    }
    
    .blog_contents .blog_list li a .img {
        margin-right: 24px;
        width: 62px;
    }
    
    .blog_contents .blog_list li a .img::after {
        border-top: 31px solid transparent;
        border-bottom: 31px solid transparent;
        border-left: 10px solid #FF7900;
        right: -10px;
    }

    .blog_contents .blog_list li a p {
        font-size: 14px;
    }
    
}

#footer .inner {
    max-width: 960px;
    width: 100%;
    background-color: #fff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: inset -5px -5px 10px 0px rgba(255, 255, 255, 0.5), inset 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

#footer .footer_info {
    margin-bottom: 24px;
    text-align: center;
}

#footer .footer_info a p {
    font-size: 22px;
    text-align: center;
    margin-top: 3px;
    color: #7C7C7C;
    letter-spacing: 2px;
    font-weight: bold;
}

#footer .footer_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #7C7C7C;
    line-height: 1;
    padding: 8px 0 8px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    background-color: #F6F4EC;
}

#footer .footer_list li {
    width: calc(100%/4);
    padding: 12px;
    font-size: 14px;
}

#footer .footer_list li a {
    display: inline-block;
	position: relative;
}

#footer .footer_list li a::after {
    position: absolute;
	content: '';
	bottom: -3px;
	left: 0;
	width: 0;
	height: 1px;
	background: #333;
	transition: all 0.3s ease 0s;
}

#footer .footer_list li a:hover::after {
    width: 100%;
}

#footer .company .croporate {
    display: flex;
    justify-content: flex-end;
}

#footer .company .croporate a {
    line-height: 1;
    border-bottom: 1px solid #7C7C7C;
    padding-bottom: 3px;
}

#footer .company .croporate a span {
    margin-left: 8px;
}

#footer .company .croporate a span img {
    width: 22px;
}

#footer .company .copyright {
    font-size: 12px;
    text-align: center;
    margin-top: 14px;
}

@media screen and (max-width: 1024px) {
    #footer .footer_list li {
        width: calc(100%/3);
    }
}


@media screen and (max-width: 767px) {
    #footer .footer_list li {
        width: calc(100%/1);
        font-size: 14px;
        padding: 6px 0;
        list-style: inherit;
        margin-left: 14px;
    }
    
    #footer .footer_info a img {
        width: 240px;
    }

    #footer .footer_info a p {
        font-size: 18px;
    }

}

/*----------------------
ページごとの記述
-----------------------*/
.blog_contents .heading {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
}

.blog_contents .heading img {
    background-color: #FF7900;
    width: 86px;
    padding: 8px;
    border-radius: 15px;
    margin-right: 20px;
}

.blog_contents .heading p span {
    font-weight: bold;
    color: #FF7900;
}

.blog_contents .text .caption {
    line-height: 2.4;
    font-weight: bold;
    color: #FF7900;
    font-size: 18px;
}

.blog_contents .text .number {
    font-weight: bold;
    line-height: 2;
}

@media screen and (max-width: 767px) {
    .pc {
        display: none;
    }
    
    .blog_contents .heading {
        margin-bottom: 16px;
        font-size: 14px;
        flex-direction: column;
    }
    
    .blog_contents .heading img {
        width: 64px;
        padding: 6px;
        margin-right: 0;
        margin-bottom: 16px;
    }
    
    .blog_contents .text {
        font-size: 14px;
    }

    .blog_contents .text .caption {
        line-height: 2;
        font-size: 16px;
    }

    .blog_contents .text .number {
        line-height: 2;
    }
}