@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-family:"Century Gothic", sans-serif;
 /*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);

  font-family:"Century Gothic", sans-serif;

  }

ol, ul {
  list-style: none;
}

input,select,textarea {
  transform: scale();
  font-size: 16px;
}

blockquote, q {
  quotes: none;
}

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

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

a {
  color:var(--font-color);
}
a:hover {
  color: var(--accent-color);
}
small {
  font-size: 70%;
}
.wrapper,
.inner_wrapper{
    max-width: 1200px;
    margin: 0 auto;
  }

  
main {
   margin: 60px auto auto 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 ol {
	list-style: decimal;
	margin: 0.5em 0.5em 0.5em  2em;
}

main p {
    color: var(--font-color);
    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;
}

.none {
 display: none !important;
}

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

.blog-list__list-item {
    background-color: #FFF;
    border-radius: 8px;
}
.blog-list__list-item a{
  text-decoration: none;
}
.blog-list__list-item a:hover{
  color: var(--font-color);
  opacity: .8;
}
.blog-item__time{
  display: inline-block;
  margin-top: .5em;
  margin-bottom: 0.5em;
  font-size: 0.7rem;
}
.blog-item__content{
  padding: 1em 1em 0.5em;
}
.blog-item__content h3{
  padding: 0;
  font-size: 1.1rem;
  line-height: 1.4;
}
.blog-item__thumbnail img{
  width: 100%;
  height: 200px;
  border-radius: 8px 8px 0 0;
}
.blog-item__button-more{
  display: inline-block;
  background: linear-gradient(#FF9787, #F75940);
    color: #fff;
    padding: 0.8em 4em 0.8em 3em;
    margin: 1em 0;
    border-radius: 60px;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    font-size: .8rem;
}
.blog-item__button-more:after{
  content: "";
    background-image: url(../../img/pages/front/arrow-white.svg);
    position: absolute;
    right: 0.8em;
    bottom: 0.3em;
    margin: auto;
    width: 25px;
    height: 25px;
    transition: all 0.2s ease;
}

div.blog-item__read {
        padding: .7em 0 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;
}

.al-item-c {
	align-items:center;
}
.sp_block, .pc_none {
    display: block;
}

span.sp_block, span.pc_none  {
         display: inline-block;
}

.sp_none, .pc_block {
   display: none;
} 
.form_area input[name$="_confirm"] {
  margin-top: 0.5em;
}

.flexWrap {
  display: flex;
}
/* h1アイコン付き見出し */
.top-h1 {
  justify-content: center;
  align-items: center;
  margin: 160px 0 40px 0;
  gap: 8px;
}

span.monthly {
    font-size: 0.85rem;
    display: inline;
    margin-right: 0.5rem;
}

.request-btn {
	margin: 4em 0 2em 0;
}

form select {
  position: relative;
}

form select::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-color: #000;
}
main .cost_Notes li p {
   line-height:1;
}
ol.kome {
  list-style-type: none;
  counter-reset: list-counter;
  text-align: left;
}
ol.kome li {
	list-style-type: none !important;
	line-height: 1.5;
}
ol.kome li::before {
  content: "※" counter(list-counter) ". ";
  counter-increment: list-counter;
}

ul.kome {
  list-style-type: none;
  counter-reset: list-counter;
  text-align: left;
}
ul.kome li {
	list-style-type: none !important;
	line-height: 1.5;
}
ul.kome li::before {
  content: "※";
  counter-increment: list-counter;
}


ul.kome li,
ol.kome li {
  display: flex;
  gap: 5px;
  text-align: left;
  font-size: 0.8rem;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝*/
@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;
    margin-top: 80px;
	} 
	main.home {
	padding: 0;
	}

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

	.blog-list__list-item {
		width: calc(33.3% - 2em);
    margin: 1em;
    padding-bottom: 60px;
    position: relative;
	}

  div.blog-item__button {
    position: absolute;
    bottom: 10px;
    right: 20px;
  }

    .sp_block, .pc_none {
        display: none;
    }
    .sp_none, .pc_block {
        display: block;
    } 
    span.sp_none,  span.pc_block {
         display: inline-block;
    }

    
}
/*＝＝＝＝＝＝＝＝＝＝＝＝*/
@media screen and (max-width: 767px) {
  section > .inner_wrapper{
    padding: 0 1em 2em;
  }
	.blog-item__thumbnail img{
    height: auto;
  }
  .blog-list__list-item{
    margin-bottom: 1em;
  }

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

}