@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');

/* 変数 */
:root {
	--f1: 2.4em;
	--f2: 1.6em;
	--f3: 1.3em;
	--f4: 1.25em;
	--f5: 1em;
	--f6: 0.8em;

	--base-color: #fcf9ef; /*beige*/
	--sub-color: #038C8C; /*blue*/
	--sub-color-2: #75BFBF;
	--accent-color: #F25041;
	--accent-color-2: #F25041;
	--black: #2e2e2e;
	--gradient: linear-gradient( 79.7deg,  rgba(34,126,34,1) 8.2%, rgba(99,162,17,1) 84.9% ); 
	
	--myw: 720px; /* 標準幅 */
}


body {
	margin: 0;
	box-sizing: border-box;
	font-family:  NotoSansJP, "Noto Sans CJK JP", YakuHanJP, "Yu Gothic", YuGothic, "Hiragino Sans", sans-serif;
	font-weight: 300;
	letter-spacing: 0.05em;
   color: var(--black);
	font-size: 16px;
	/*background: #f5f5f5;*/
}

@media (max-width: 740px) {
	body {
		font-size: 16px;
	}
}

body *,
body *::before,
body *::after {
	box-sizing: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

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

table th {
	font-weight: 500;
}

.alignleft {
	float: left;
	margin-left: 0;
	margin-right: 1em;
}

.alignright {
	float: right;
	margin-left: 1em;
	margin-right: 0;
}

.aligncenter {
	margin-left: auto;
	margin-right: auto;
}

.wp-block-categories.aligncenter,
.wp-block-latest-posts.aligncenter,
.wp-block-archives.aligncenter,
.wp-block-tag-cloud.aligncenter,
.wp-block-latest-comments.aligncenter,
.wp-block-rss.aligncenter {
	text-align: center;
}


figure {
	margin: 0;
}


p {
	line-height: 1.8;
	font-size: var(--f5);
}

h1 {
	font-size: var(--f1);
	margin-top: 0;
}
h2 {
	font-size: var(--f2);
}
h3 {
	font-size: var(--f3);	
}
h4 {
    font-weight: 400;
    font-size: 16px;
}
h5 {
	font-size: var(--f5);
}
h6 {
	font-size: var(--f6);
}


/* 横幅 */
.mycontainer {
	margin-left: 10px;
	margin-right: 10px;
}

.alignfull {
	margin-left: -10px;
	margin-right: -10px;
	max-width: none;
	width: auto;
}

@media (min-width: 740px) {

	.mycontainer {
		max-width: none;
		margin-left: calc( ( 100vw - var(--myw) ) / 2 );
		margin-right: calc( ( 100vw - var(--myw) ) / 2 );
	}

	.alignfull {
		margin-left: calc( ( 100vw - var(--myw) ) / 2 * -1 );
		margin-right: calc( ( 100vw - var(--myw) ) / 2 * -1 );
	}

	.alignwide {
		margin-left: calc( ( 100vw - var(--myw) ) / 4 * -1 );
		margin-right: calc( ( 100vw - var(--myw) ) / 4 * -1 );
		max-width: none;
		width: auto;
	}
}

@media (min-width: 1320px ) { 
	.alignwide {
		margin-left: -150px;
		margin-right: -150px;
	}
}


/* 記事に関する情報 */
.myposthead {
	padding-top: 20px;
	padding-bottom: 10px;
	text-align: center;
}

.myposthead p {
	color: var(--base-color);
	font-family: var(--myfont);
	font-weight: bold;
}

.post section img,
.post img {
    display: block;
	width: 470px;
    margin: 0 auto 32px auto;
	
}

.post section h2,
.post h2 {
     padding: 10px 14px;
    border-left: 5px dotted #000;
    background: #f4f4f4;
    text-align: center;
	font-weight: 500;
	margin-top: 30px;
	    line-height: 1.3;

}

.step  {
font-size: 20px;
    font-family: 'Dancing Script', cursive;
    padding: 0 10px 1px;
    display: inline-block;
    margin-bottom: 7px;
}

.post section h3,
.post h3 {
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  background: transparent;/*背景透明に*/
  border-left: solid 8px var(--sub-color-2);/*左線*/
    margin: 40px 0 20px;
    font-weight: 500;
}

.post section table,
.post table {
	margin: 20px auto;
	width: 100%;
}

.post section table th,
.post table th,
.post section table td,
.post table td {
	border: 1px solid #f5f5f5;
	padding: 10px;
}

.post section table th,
.post table th {
	background: #f5f5f5;
}


@media (max-width: 739px) {
	.myposthead {
    padding: 20px 10px 20px;
	}
}

.post a {
	color: #4682b4;
	text-decoration: underline;
}

/* リンク */
a {
	color: inherit;
	text-decoration: none;
	transition: .3s;
	
}

a:hover {
	opacity: 0.7;
}


/*-----------------------------
header
-----------------------------*/

header {
	display: flex;
	justify-content: center;
	align-content: center;
	padding: 10px;
	background: #f5f5f5;
	height: 80px;
}

.logo {
	height: 38px;
	margin: auto;
}

@media (max-width: 720px) {
	.logo {
		/*height: auto;*/
	}
}

/*-----------------------------
footer
-----------------------------*/
.myfoot {
	padding: 50px 0;
	background-color: var(--black);
	color: #ffffff;
	text-align: center;
	font-family: var(--myfont);
	font-size: 12px;
}

footer ul {
	list-style: none;
	font-size: 12px;
	    margin: 0;
    padding: 0;
}

footer ul li {
	margin-bottom: 4px;
}

/*--------------*/
.sitrana-wrap {
    max-width: 640px;
    background: #fff;
    padding: 16px 24px 40px;
    margin: auto;
}

.sitrana-wrap .big {
	font-size: 180%;
}

.wp-block-image figcaption {
    color: #555;
    font-size: 9px;
    text-align: right;
    margin: 0;
}

.main-title {
    background: #fff;
    padding: 10px 0;
    font-size: 151%;
    border-bottom: 3px dotted #E6C3D5;
    line-height: 1.6;

}

video {
	width: 100%;

  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 740px) {
	
.sitrana-wrap {
    padding: 16px 16px 40px;
}
	
}

/*-----
 記事内装飾
-----*/
li{
	line-height: 1.5em;
}

p{
margin:  0 0 32px 0;	
}

.mt0{
	margin-top:0;
}

.mb0{
	margin-bottom:0;
}

.bold {
	font-weight: 500;
}

.orange{
	color: #EC8970;
}

.pink{
	color: #ED7497;
}

.gray {
	color: #DBDFE5;
}

.blue{
	color: #478BA1;
}

.purple{
	color: #7172ac;
}

.black{
	color: #231815;
}

.font-s{
	font-size: 13px!important;
}

.font-m{
	font-size: 20px;
}

.font-l{
	font-size: 24px;
}

.center{
	text-align: center;
}


.maker-grad {
    background-image: linear-gradient(91.21deg, #EC8970 0%, #ED7399 101.67%);
    background-repeat: no-repeat;
    background-size: 100% 4px;
    background-position: bottom;
}

/*タイトル*/
.title-main {
  position: relative;
  padding: 0.25em 1em 1em;
  border-top: solid 2px #7172ac;
  border-bottom: solid 2px #7172ac;
	text-align: center;
}

.title-main:before, .title-main:after {
  content: '';
  position: absolute;
  top: -7px;
  width: 2px;
  height: -webkit-calc(100% + 14px);
  height: calc(100% + 14px);
  background-color: #7172ac;
}

.title-main:before {
  left: 7px;
}

.title-main:after {
  right: 7px;
}

.title-main:first-letter {
  font-size: 2em;
  color: #7172ac;
}

/*サブタイトル*/

.title-sub {
    position: relative;
    /*background: #EFF3F9;*/
    padding: 8px 32px;
    text-align: center;
    width: fit-content;
    margin: 42px auto;
    color: #ED7497;
}
.title-sub:before, .title-sub:after { 
	content:'';
	width: 20px;
	height: 40px;
	position: absolute;
	display: inline-block;
}
.title-sub:before {
	border-left: solid 3px #ED7497;
	border-top: solid 3px #ED7497;
	top:0;
	left: 0;
}
.title-sub:after {
	border-right: solid 3px #ED7497;
	border-bottom: solid 3px #ED7497;
	bottom:0;
	right: 0;
}

.title-sub:first-letter {
  font-size: 2em;
  color: #ED7497;
}

/*吹き出し*/
.oneArea {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 1024px;
  margin: 50px auto;
  padding: 0 10px;
}

.oneArea p{
 margin-bottom: 0px;
}

.oneArea .onebox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.oneArea .onebox:nth-child(even) {
  flex-direction: row-reverse;
  margin-top: 20px;
}

.oneArea .onebox:nth-child(3) {
  margin-top: 20px;
}

.oneArea .onebox .imgArea {
  width: 16%;
  position: relative;
}
.oneArea .onebox:nth-child(odd) .imgArea img {
  width: 100%;
  max-width: 130px;
  position: absolute;
  top: 0;
  left: 0;
  padding-right: 30px;
}
.oneArea .onebox:nth-child(even) .imgArea img {
  width: 100%;
  max-width: 130px;
  position: absolute;
  top: 0px;
  left: auto;
  right: 0;
  padding-left: 30px;
}
.oneArea .onebox .fukiArea {
  width: 63%;
}
.oneArea .onebox .fukidasi {
  width: 100%;
  position: relative;
  padding: 25px;
  background-color: #EEEFFF;
  font-size: 16px;
  color: #231815;
  border-radius: 12px;
  box-sizing: border-box;
}
.oneArea .onebox .fukidasi.girl-1{
  width: 100%;
  position: relative;
  padding: 25px;
  background-color: #FFF0F9;
  font-size: 16px;
  color: #231815;
  border-radius: 12px;
  box-sizing: border-box;
}
.oneArea .onebox:nth-child(3) .fukidasi {
  background-color: #FFF0F9;
}
.oneArea .onebox .fukidasi.girl-1{
  background-color: #FFF0F9;
}
.oneArea .onebox .fukidasi::before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(45deg);
  top: 22px;
  border-right: 25px solid transparent;
  border-bottom: 25px solid transparent;
}
.oneArea .onebox .fukidasi::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(45deg);
  top: 40px;
  border-right: 25px solid transparent;
  border-bottom: 25px solid transparent;
}
.oneArea .onebox:nth-child(odd) .fukidasi::before {
  left: -15px;
  border-left: 25px solid #EEEFFF;
  border-top: 25px solid transparent;
}

.oneArea .onebox:nth-child(3) .fukidasi::before {
  border-left: 25px solid #FFF0F9;
}
.oneArea .onebox .fukidasi.girl-1::before {
  border-left: 25px solid #FFF0F9;
}

.oneArea .onebox:nth-child(odd) .fukidasi::after {
  left: -25px;
  border-left: 25px solid #ffffff;
  border-top: 25px solid transparent;
}
.oneArea .onebox:nth-child(even) .fukidasi {
  background-color: #FFF8F0;
}
.oneArea .onebox:nth-child(even) .fukidasi::before {
  left: auto;
  right: -15px;
  border-left: 25px solid transparent;
  border-top: 25px solid #FFF8F0;
}
.oneArea .onebox:nth-child(even) .fukidasi::after {
  left: auto;
  right: -25px;
  border-left: 25px solid transparent;
  border-top: 25px solid #ffffff;
}
@media screen and (max-width: 1024px) {
  .oneArea .onebox:nth-child(odd) .imgArea img {
    /*max-width: 70%;*/
    top: 0;
  }
  .oneArea .onebox:nth-child(even) .imgArea img {
    /*max-width: 70%;*/
    top: 0;
  }
  .oneArea .onebox .fukidasi {
    padding: 15px;
    font-size: 14px!important;
  }
  .oneArea .onebox .fukidasi::before {
    top: 8px;
  }
  .oneArea .onebox .fukidasi::after {
    top: 20px;
  }
}
@media screen and (max-width: 420px) {
  .oneArea {
    margin: 30px auto;
  }
  .oneArea .onebox:nth-child(even) {
    margin-top: 15px;
  }
  .oneArea .onebox:nth-child(3) {
    margin-top: 15px;
  }
  .oneArea .onebox .imgArea {
    width: 20%;
  }
  .oneArea .onebox .fukidasi {
    padding: 10px 15px;
    font-size: 12px;
  }
	.oneArea .onebox .fukiArea {
  width: 75%;
}
	.oneArea .onebox:nth-child(odd) .imgArea img {
    padding-right: 20px;
}
	.oneArea .onebox:nth-child(even) .imgArea img {
    padding-left: 20px;
}
}

/* 点滅 */
.blinking{
	-webkit-animation:blink 1s ease-in-out infinite alternate;
    -moz-animation:blink 1s ease-in-out infinite alternate;
    animation:blink 1s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

/*改行*/
@media screen and (min-width: 768px){
.br-sp {display: none; }
}

@media screen and (max-width: 768px){
.sp-font-s{
	font-size:15px!important;
}
}