@charset "UTF-8";
/* CSS Document */
/*
====参考ブレイクポイント========================
* X-Small  |	--               |	575px以下
* Small    |	sm               |	576px以上ｖ/　767px以下
* Medium   |	md               |	768px以上　/　991px以下
* Large    |	lg               |	992px以上　/　1199px以下
* Extra    |	large	xl         |	1200px以上　/　1399ｐｘ以下
* Extra    |	extra large	xxl  |	1400px以上
=========================================
*
*/


:root{
    --accent-color: #f75940;
    --font-color:#364853;
    --btn-1-color:linear-gradient(#f97987,#F75940);
}


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 1rem;	
  /*font-size: 100%;
  font: inherit;*/
}

html {
 /*height: 100%;*/
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
	 /*height: 100%;*/
	line-height: 1;
	/* Firefox */
	background: -moz-linear-gradient(top, #FFFAF9, #FFDED8);
	/* Chrome , Safari */
	background: -webkit-linear-gradient(top, #FFFAF9, #FFDED8);
	/* IE11 */
	background: linear-gradient(to bottom, #FFFAF9, #FFDED8);
	/* 代用 */
	background: linear-gradient(to bottom, #FFFAF9, #FFDED8);
	background-color: #FFDED8;
  color:var(--font-color);
  }

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color:#fff;
}
a:hover {
  color: var(--accent-color);
}

.wrapper,
.inner_wrapper{
    max-width: 1200px;
    margin: 0 auto;
  }

  
main {
   margin: auto;
   padding: 0 1em 5em 1em;
} 

main.home {
	padding: 0 1em;
}

main h1 {
    
    font-weight: bold;
    font-size: 2em;
  }
  
main h2 {
        font-size: 1.8em;
        padding: 1em 0 1em;
}

main h3 {
        font-size: 1.6em;
        padding: 1em 0 1em;
}

main h4 {
        font-size: 1.4em;
        padding: 1em 0 1em;
}

main h5 {
        font-size: 1.25em;
        padding: 1em 0 1em;
}

main h2:first-child,
main h3:first-child,
main h4:first-child,
main h5:first-child {
        padding-top: 0em;
}


main h6,
main dt {
        font-size: 1.1em;
        padding: 1em 0 1em;
}

main p,
main li,
main dd,
main th,
main td {
    font-size: 1.0em;
}

main p {
    color: #fff;
    letter-spacing: 0.5;
    line-height: 1.5;
}

main a {
  color:var(--font-color);
}
main a:hover {
  color: var(--accent-color);
}
 

section > .inner_wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2em 1em;
}

section.title_section > .inner_wrapper{
	padding-top: 4em !important;
}

section.title_section div.inner_wrapper h1 {

}

section.content_Area {
	/*background: #FFF;*/
}

/*＝＝＝WordPress固有スタイル＝＝＝*/
.wp-caption{
	
}
.wp-caption-text{
	
}
.sticky{
	
}
.gallery-caption{
	
}
.bypostauthor{
	
}

.alignright {
	text-align: right;
}
.alignleft {
	text-align: left;
}

.aligncenter {
	text-align: center;
}

/*＝＝＝記事一覧ページ＝＝＝*/
.blog-list {
    display: flex;
    flex-wrap: wrap; /* 折返し指定 */
    gap: 1em;
}

.blog-list__list-item {
    width: calc(50% - 2.5em);
    padding: 1em;
    background-color: #FFF;
    border-radius: 1em;
}

h3.blog-item__title {
        padding: 1rem 0 !important;
}

div.blog-item__read {
        padding: 1rem 0;
}

div.blog-item__read * {
    font-size: 0.8em;
}

div.blog-item__button {
    text-align: right;
}

div.blog-item__button a {
    background-color: #232323;
    color: #FFF;
    display: inline-block;
    padding: 0.5rem 2rem 0.5rem 1rem;
    border-radius: 0.5em;
    position: relative;
	text-decoration: none;
}
div.blog-item__button a:hover {
	background-color: #666;
}
div.blog-item__button a:after {
    content: "＞";
    position: absolute;
    right: 0.5rem;
}

.flex_half {
 flex:0.5;
}

.flex_1 {
 flex:1;
}

.flex_2 {
 flex:2;
}
.flex_3 {
 flex:3;
}

.flex_4 {
 flex:4;
}


.sp_block {
    display: block;
}

.sp_none {
   display: none;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝*/
@media screen and (min-width: 768px) { 
  .flex_wrap_pc {
    display: flex;
  }

.flex_half_pc {
 flex:0.5;
}

.flex_1_pc {
 flex:1;
}

.flex_2_pc {
 flex:2;
}
.flex_3_pc {
 flex:3;
}

.flex_4_pc {
 flex:4;
}

	main {
    padding: 0 0 5em 0;
	} 
	main.home {
	padding: 0;
	}

	section > .inner_wrapper {
		padding: 2em 0em;
	}
	section.title_section > .inner_wrapper{
		padding-top: 4em !important;
	}
	
	.blog-list {
    gap: 2em;
	}
	.blog-list__list-item {
		width: calc(25% - 2em);
	}
    .sp_block, .pc_none {
        display: none;
    }
    .sp_none, .pc_block {
        display: block;
    } 
    span.sp_none,  span.pc_block {
         display: inline-block;
    }

    
}
/*＝＝＝＝＝＝＝＝＝＝＝＝*/
@media screen and (min-width: 1200px) {
	

}