@charset "UTF-8";
/*
Theme Name: MY THEME 4
Author: MONIKER
Description: オリジナルテーマです
Version: 1.0
*/

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

.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-left: 0;
	margin-right: 0;
}

body {
	box-sizing: border-box;
}

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


/* 変数 */
:root {
	--f1: 2.44em; /* 39.04px */
	--f2: 1.95em; /* 31.2px */
	--f3: 1.56em; /* 24.96px */
	--f4: 1.25em; /* 20px */
	--f5: 1em;    /* 16px */
	--f6: 0.8em;  /* 12.8px */

	//--basecolor: #63a211; /* 基本色 */
	--basecolor: #0693e3; /* 基本色 */
	//--gradient: linear-gradient( 79.7deg,  rgba(34,126,34,1) 8.2%, rgba(99,162,17,1) 84.9% );
	--gradient: linear-gradient(135deg,#0693e3,#9b51e0);

	--myfont: 'Josefin Sans', sans-serif;
	--myw: 720px; /* 標準幅 */
}


/* フォント */
body {
	font-family: sans-serif;
}

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

h1 {
	font-size: var(--f1);
}
h2 {
	font-size: var(--f2);
}
h3 {
	font-size: var(--f3);
}
h4 {
	font-size: var(--f4);
}
h5 {
	font-size: var(--f5);
}
h6 {
	font-size: var(--f6);
}

h2 {
	border-left: solid 14px var(--basecolor);
	padding-left: 14px;
}


/* 横幅 */
body {
	margin: 0;
}

.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 h1 {
	font-family: "Shin Go Emboss";
}

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

a:hover {
	opacity: 0.7;
}

/* 記事が属するカテゴリー */
.post-categories {
	display: flex;
	justify-content: center;
	padding: 0;
	list-style-type: none;
}

.post-categories li:not(:last-child) {
	margin-right: 10px;
}

.post-categories a {
	padding: 3px 10px;
	border: solid 1px currentColor;
	border-radius: 10px;
	color: var(--basecolor);	
	font-size: var(--f6);
}

.post-categories::before {
	content: "\f07c";
	font-family: "Font Awesome 5 Free";
	color: var(--basecolor);
	font-size: var(--f2);
	line-height: 1;
	margin-right: 10px;
}

/* スクリーンリーダー用のテキスト */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* 前後の記事へのリンク */
.nav-links {
	display: flex;
	margin: 30px 0;
	font-size: var(--f6);
}

.nav-previous {
	flex: 1;
	display: flex;
	align-items: center;
}

.nav-next {
	flex: 1;
	margin-left: 10px;
	text-align: right;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.nav-previous::before {
	content: "\f359";
	padding-right: 10px;
}

.nav-next::after {
	content: "\f35a";
	padding-left: 10px;
}

.nav-previous::before, .nav-next::after {
	font-family: "Font Awesome 5 Free";
	color: var(--basecolor);
	font-size: var(--f2);
	line-height: 1;
}

/* ヘッダー */
.myhead > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	color: #444444;
}

.myhead a {
	font-size: var(--f3);
	font-family: "Shin Go Emboss";
}

.myhead p {
	margin: 0;
	font-size: var(--f6);
	font-family: var(--myfont);
}
.myposthead p {
	color: var(--basecolor);
	font-family: var(--myfont);
	font-weight: bold;
}
/* フッター */
.myfoot {
	padding: 16px;
	background-color: var(--basecolor);
	background-image: var(--gradient);
	color: #ffffff;
	text-align: center;
	font-family: "Shin Go Emboss";
}
/* 記事一覧 */
.mypostlist {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.mypostlist article {
	width: 48%;
	margin-bottom: 20px;
}

.mypostlist figure {
	margin: 0;
}

.mypostlist img {
	height: 180px;
	object-fit: cover;
}

.mypostlist h2,
.mypostlist h3 {
	margin: 0;
	padding: 0;
	border: none;
	font-size: var(--f6);
}

/* 関連記事 */
.myrelated {
	border: solid 2px var(--basecolor);
	padding: 0 10px;
}

.myrelated h2 {
	border-width: 5px;
	color: var(--basecolor);
	font-family: var(--myfont);
	font-size: var(--f5);
}

.myrelated img {
	height: 120px;
}

@media (min-width: 740px) {
	.myrelated article {
		width: 24%;
	}

	.myrelated .mypostlist {
		justify-content: flex-start;
	}

	.myrelated article:not(:last-child) {
		margin-right: calc( 4% / 3 );
	}
}


/* ページネーション */
.pagination .nav-links {
	margin-bottom: 50px;
	justify-content: center;
}

.pagination .page-numbers:not(:last-child) {
	margin-right: 15px;
}

.pagination a {
	color: var(--basecolor);
}

.pagination .current {
	color: #aaaaaa;
}


/* メニュー */
.mymenu {
	margin-top: 40px;
	padding-top: 40px;
	padding-bottom: 40px;
	background-color: #fbf6e8;
}

.mymenu h2 {
	padding: 10px;
	border: none;
	background-color: var(--basecolor);
	color: #ffffff;
	font-family: var(--myfont);
	font-size: var(--f5);
}

.myprofile figure {
	text-align: center;
}

.myprofile img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
}

.myprofile strong {
	display: block;
	text-align: center;
	font-family: var(--myfont);
}

.myprofile p {
	font-size: var(--f6);
}

.widget ul {
	padding: 0;
	list-style-type: none;
	font-size: var(--f6);
}

.widget li:not(:last-child) {
	margin-bottom: 5px;
}

.widget select {
	width: 100%;
	height: 40px;
	border: solid 1px #aaaaaa;
}

@media (min-width: 740px) {
	.mymenu-columns {
		columns: 3;
		column-gap: 30px;
	}

	.mymenu-columns > section {
		position: relative;
		overflow: hidden;
		break-inside: avoid;
	}
}


/* お問い合わせ */
.wpcf7-text,
.wpcf7-textarea {
	width: 100%;
	padding: 10px;
	border: solid 1px #bbbbbb;
}

.wpcf7-submit {
	width: 250px;
	padding: 10px;
	border: none;
	background-color: #ffaa00;
	-webkit-appearance: none;
}

/* シェアボタン */
.myshare {
	margin-top: 60px;
	margin-bottom: 40px;
}

.myshare h2 {
	padding: 0;
	border: none;
	color: var(--basecolor);
	font-family: var(--myfont);
	font-size: var(--f5);
	text-align: center;
	line-height: 1.2;
}

.myshare .mytwitter {
	color: #1da1f2;
}

.myshare .myfacebook {
	color: #3b5998;	
}

.myshare a {
	width: 49%;
	padding: 10px;
	border: solid 1px currentColor;
	line-height: 1;
	text-align: center;
}

/* ２段組み */
@media (min-width: 1320px) {

	.mycols .mycontainer,
	.mycols .alignwide,
	.mycols .alignfull {
		width: auto;
		max-width: none;
		margin-left: 0;
		margin-right: 0;
	}

	.mycols .mymenu-columns {
		columns: 1;
	}

	.mycols {
		display: flex;
		margin: 50px calc( ( 100vw - 1020px ) / 2 );
		justify-content: space-between;
	}

	.mycols .mycontent {
		width: 68%;
	}

	.mycols .mymenu {
		width: 26%;
		margin-top: 0;
		padding: 10px;
	}

}

/* ナビゲーションメニュー */
/*.mynav {
	padding: 7px 0;
	background-image: var(--gradient);
	color: #ffffff;
	font-size: var(--f6);
}

.mynav ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.mynav li:not(:last-child) {
	margin-right: 1em;
}*/
/* menu single */
.mynav {
	padding: 7px 0;
	background-image: var(--gradient);
	color: #ffffff;
	font-size: var(--f6);
}
.mynav ul {
	padding: 0px;
}
.menu {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 0 auto;
	list-style-type: none;
}

.menu > li {
    float: left;
    width: 25%; /* グローバルナビ4つの場合 */
    height: 50px;
    line-height: 50px;
    //background: rgb(29, 33, 19);
	text-align: center;
}

.menu > li a {
    display: block;
    color: #fff;
}

.menu > li a:hover {
    //color: #999;
	color: #eee;
}

ul.sub-menu {
    visibility: hidden;
    opacity: 0;
    z-index: 1000;
	list-style-type: none;
}

.menu > li:hover {
    //background: #072A24;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.sub-menu li {
    //border-top: 1px solid #111;
	background-image: var(--gradient);
}
.sub-menu li a:hover {
    //background: #111;
	color: #FFF;
}


/* 下矢印 */
.menu-item-has-children>a:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 0 15px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* floatクリア */
.menu:before,
.menu:after {
    content: " ";
    display: table;
}

.menu:after {
    clear: both;
}

.menu {
    *zoom: 1;
}
.menu > li.menu-item {
    position: relative;
}

li.menu-item ul.sub-menu {
    position: absolute;
    top: 56px;
    width: 100%;
    background: #072A24;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

li.menu-item:hover ul.sub-menu {
    top: 56px;
    visibility: visible;
    opacity: 1;
}
/* about */
.about-block-people {
	margin-top: -2em;
}
.about-block-map {
	margin-top: -2em;
}
.about-block-bg-wordpress {
	background-size: 60%;
	background-position: center;
	background-repeat: no-repeat;
	background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="720" height="720"><path d="M360 0c198.5 0 360 161.5 360 360 0 198.51-161.5 360-360 360S0 558.5 0 360 161.5 0 360 0zm0 1.2C162.16 1.2 1.2 162.16 1.2 360S162.16 718.8 360 718.8c197.85 0 358.8-160.95 358.8-358.8C718.8 162.15 557.84 1.2 360 1.2zm6.2 386.76.04.1 99.3 272.09a29.98 29.98 0 0 0 2.27 4.34.6.6 0 0 1-.3.88A323.23 323.23 0 0 1 360 683.76a324.16 324.16 0 0 1-91.45-13.19.6.6 0 0 1-.42-.68l.02-.09 96.96-281.74a.6.6 0 0 1 1.03-.18l.05.08zm-.51 2.1-96.2 279.54.93.27a322.96 322.96 0 0 0 87.98 12.68h1.6a322.03 322.03 0 0 0 105.65-17.8l.75-.26-.35-.61a31.2 31.2 0 0 1-1.33-2.61l-.3-.68-98.73-270.54zM65.38 228.17l.04.1L219.56 650.6a.6.6 0 0 1-.83.74A323.68 323.68 0 0 1 36.3 360a322.42 322.42 0 0 1 28.02-131.76.6.6 0 0 1 1.07-.06zm-.58 1.9-.51 1.18A321.22 321.22 0 0 0 37.49 360a322.47 322.47 0 0 0 178.47 288.64l1.96.96L64.8 230.08zm579.27-25.4A322.18 322.18 0 0 1 683.71 360c0 116.47-62.1 222.16-160.95 279.8a.6.6 0 0 1-.9-.62l.03-.09 98.7-285.38c17.12-42.8 24.53-79.62 24.53-115.5a247.14 247.14 0 0 0-2.17-33.16c-.09-.66.8-.95 1.12-.37zm.47 3.4.06.5a248.33 248.33 0 0 1 1.72 29.62c0 33.13-6.29 67.05-20.64 105.64l-.96 2.55a450.98 450.98 0 0 1-2.5 6.44l-.51 1.3-98.16 283.81 1.55-.9c95.79-57.23 156.18-160.06 157.39-273.56l.02-3.48a320.99 320.99 0 0 0-37.2-150.48l-.77-1.45zM360 36.28a322.5 322.5 0 0 1 218.6 85 .6.6 0 0 1-.44 1.04l-2.3-.18-.62-.05-.36-.01-.52-.02h-.34c-30.17 0-53.66 26-53.66 56.75 0 12.25 3.21 24.16 9.65 37.6l.63 1.3.32.65.66 1.31.34.67.7 1.34c.46.9.95 1.82 1.45 2.74l.77 1.41.8 1.44.83 1.46.42.74.88 1.52.9 1.55.94 1.58 1.55 2.6 1.71 2.82 2.65 4.32 6.46 10.44 1.05 1.85 1.02 1.81.99 1.77.95 1.74.93 1.7a320 320 0 0 1 .9 1.67l.86 1.64 1.26 2.42.8 1.59.78 1.56.76 1.56.73 1.54.71 1.53.35.76.69 1.52.99 2.28.64 1.51.63 1.53c1.03 2.54 2 5.1 2.93 7.76a153.46 153.46 0 0 1 8.75 51.66c0 14.57-2.26 31.1-6.78 49.58l-.53 2.1-.54 2.12a345.15 345.15 0 0 1-1.43 5.37l-.6 2.17-.96 3.3-.65 2.22a402.97 402.97 0 0 1-1.02 3.35l-.7 2.26-.73 2.28a440.61 440.61 0 0 1-.75 2.3l-.76 2.3-.78 2.33-.4 1.17-.8 2.35-.84 2.37-.85 2.39-.87 2.4-.88 2.42-.45 1.21-.92 2.45-.94 2.46-.47 1.23-.97 2.5-32.24 107.68a.6.6 0 0 1-1.1.12l-.04-.1-116.78-347.36a.6.6 0 0 1 .53-.8c5.96-.3 12.1-.73 18.28-1.24l3.53-.3 2.3-.21 2.24-.2 3.27-.33 2.1-.2 3.42-.37 1.81-.2c16.46-1.95 14.74-25.93-1.44-25.46l-.56.03-4.01.3-4.64.34-4.44.3-4.56.31-4.68.3-4.78.3-3.23.2-3.94.23-3.9.22-3.87.2-3.82.2-1.9.09-3.74.18-3.69.16-3 .12-3.47.14-3.38.12-2.2.07-2.17.06-3.18.08-2.06.05-2.02.04-1.98.03-1.93.03-2.81.02-1.82.01h-2.46l-2.44-.02-1.67-.02-1.72-.02-1.76-.03-3.64-.08-3.8-.1-2.94-.1-3.04-.1-4.17-.17-3.22-.14-1.1-.04-3.75-.18-3.83-.18-3.88-.2-3.94-.21-1.99-.11-4.01-.23-3.77-.23-5.18-.32-3.4-.21-3.36-.22-4.93-.33-6.63-.47-5.4-.4c-7.64-.45-12.9 4.81-13.46 12-.55 7.16 3.85 12.98 11.52 13.44l2.98.35 2.97.33 2.16.23 2.22.23 2.28.22 2.33.23 2.36.22c4.63.42 9.2.78 13.62 1.06l1.9.12 1.04.07a.6.6 0 0 1 .48.3l.04.09 50.34 137.93a.6.6 0 0 1 .03.3l-.03.1-70.73 212.08a.6.6 0 0 1-1.1.1l-.03-.1-117.66-350.01a.6.6 0 0 1 .45-.78l.09-.01 1.16-.07a581 581 0 0 0 17.1-1.18l3.54-.3 2.3-.21 2.24-.2 3.26-.33 2.1-.2 3.43-.37 1.8-.2c16.46-1.95 14.74-25.93-1.45-25.46l-.55.03-3.41.26-5.24.38-4.44.3-4.57.31-4.68.3-4.77.3-3.23.2-3.94.23-3.9.22-3.87.2-3.82.2-1.89.09-3.74.18-1.85.08-3.66.15-3.5.14-3.41.13-2.23.07-3.26.1-3.17.08-2.07.05-2.02.04-1.97.03-1.94.03-2.81.02-1.82.01h-3.39l-1.97-.02-3.48-.05-2.97-.06-3.13-.07-3.3-.1-3.48-.1a.6.6 0 0 1-.48-.93C149.04 91.8 249.78 36.3 360 36.3zm0 1.2c-108.72 0-208.17 54.2-267.7 142.65l-1.2 1.8 4.2.12 3.34.08 3.16.07 1.5.03 2.9.04 2.71.02h4.61l1.87-.02 1.9-.02 1.95-.03 2-.04 2.04-.04 3.13-.08 3.23-.1 3.32-.1 2.26-.08 4.64-.18 3.66-.16 3.7-.17 3.78-.18 3.81-.2 3.86-.2 3.9-.22 5.56-.33 3.2-.2 4.75-.3 4.64-.3 4.52-.3 6.96-.5 4.7-.35c18.03-1.07 20.28 25.14 2.7 27.75l-.9.1-2.36.27-2.53.27-2.1.2-3.26.33-2.25.2-2.3.21-2.35.2-1.2.1c-4.94.41-9.87.77-14.72 1.06l-2.8.15L279.67 556.6l70.1-210.18-50.13-137.37-.65-.04a524.13 524.13 0 0 1-13.56-1.01l-1.98-.18-2.38-.22-1.17-.1-2.3-.23-2.26-.23-2.2-.23-2.63-.29-4.37-.5c-8.34-.5-13.2-6.94-12.6-14.74.6-7.8 6.39-13.58 14.74-13.1l6.72.5 5.3.37 4.93.33 5.05.33 3.42.21 3.46.22 3.77.22 4 .23 3.97.22 3.91.2 3.85.2 3.8.17 4.03.18 3.2.13 3.1.12 3.04.1 1.97.07 2.89.09 2.8.07 1.81.04 2.65.05 1.71.02 1.67.02 1.63.02h5.07l1.86-.02 1.9-.02 1.96-.03 2-.04 2.03-.04 3.14-.08 3.23-.1 3.32-.1 2.26-.08 4.64-.18 1.82-.08 3.69-.16 1.86-.09 3.77-.18 1.9-.1 3.84-.2 3.88-.21 1.96-.11 5.55-.33 3.22-.2 4.74-.3 4.64-.3 4.53-.3 6.95-.5 4.7-.35c18.03-1.07 20.28 25.14 2.7 27.75l-.9.1-2.36.27-2.53.27-2.1.2-3.27.33-2.25.2-2.3.21-2.35.2-1.2.1c-5.4.45-10.8.83-16.05 1.13l-1.46.08 115.92 344.83L553 447.95l.96-2.48.94-2.46.93-2.45 1.35-3.64.87-2.4c.44-1.2.86-2.4 1.28-3.58l.83-2.36a441.4 441.4 0 0 0 1.6-4.68l.77-2.31.75-2.3.73-2.27.71-2.27.7-2.24.67-2.23.65-2.21.64-2.2.61-2.17.9-3.24.56-2.13.55-2.12.53-2.1.5-2.09a243.14 243.14 0 0 0 5.55-31.07l.19-1.8c.26-2.69.45-5.31.58-7.89l.08-1.7c.07-1.7.1-3.37.12-5.02v-.83c0-18.38-3.02-35.13-8.68-51.26l-.28-.79-.57-1.56-1.16-3.09-.6-1.52a170.8 170.8 0 0 0-2.9-6.8l-.68-1.51a188.93 188.93 0 0 0-.35-.76l-.72-1.53-1.12-2.3-.78-1.57-.4-.78-.8-1.59a262.41 262.41 0 0 0-.42-.8l-.85-1.62-.88-1.65-.45-.84-.92-1.69a379.26 379.26 0 0 0-.47-.86l-.97-1.74-1-1.78-1.02-1.82-.53-.93-7.84-12.68-2.14-3.5-1.38-2.3-1.01-1.7-.95-1.59-.9-1.55a320.06 320.06 0 0 1-.45-.77l-.86-1.5-.83-1.47-.8-1.44-.77-1.42-.75-1.39-.72-1.37-.7-1.35-.68-1.33-.65-1.32-.64-1.31c-6.5-13.59-9.76-25.66-9.76-38.1 0-31.4 24-57.96 54.86-57.96h.43l.43.01.46.03.5.03.65.05-.49-.44A321.28 321.28 0 0 0 362.42 37.5H360z" fill="%23ffffff" /></svg>');
}