@charset "utf-8";

/*//////////////////////////////////////////////////////////////////////////////

	下層共通

//////////////////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------------------

 ページタイトル

------------------------------------------------------------------------------*/

#content main > header {
	position: relative;
	margin-bottom: 60px;
	padding: 4em 0;
}

#content main > header::after {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background-image: url("../img/bg_sky2.jpg");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	z-index: -1;
}

#content main > header h1,
#content main > header p {
	font-size: 3.125em;
	font-weight: bold;
	text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
	color: rgba(255,255,255,1);
	line-height: 1.6;
}
#content main > header h1 span,
#content main > header p span {
	display: block;
	content: "english";
	margin-left: .5em;
	font-family: Century Gothic, sans-serif;
	font-style: italic;
	font-size: .375em;
	font-weight: bold;
	color: rgba(254,209,1,1);
}

@media screen and (max-width: 900px) {

#content main > header {
	margin-bottom: 40px;
}
	
}


/*------------------------------------------------------------------------------

	エラーページ

------------------------------------------------------------------------------*/

.error main {
	margin-bottom: 80px;
}

.error main #sitemap > ul {
	margin-top: 1em;
}


@media screen and (max-width: 767px) {

.error main {
	margin-bottom: 12vw;
}	

}


/*------------------------------------------------------------------------------

	目次

------------------------------------------------------------------------------*/

main #index {
	margin-bottom: 80px;
}

main #index .site_column {
	max-width: 900px;
}

main #index h2 {
	position: relative;
	margin: 1em 0 1.5em;
	padding: .2em;
	font-size: 2.5em;
	font-weight: bold;
	color: rgba(51,51,51,1);
	text-align: center;
} 

main #index h2::after {
	position: absolute;
	left: 50%;
	bottom: -.2em;
	transform: translateX(-50%);
	content: "";
	width: 2em;
	height: 4px;
	background-color: rgba(var(--sub-color),1);
} 

main #index .group a {
	display: block;
	padding: 1em 0;
	border-bottom: 1px solid rgba(51,51,51,.3);
	text-decoration: none;
	color: rgba(51,51,51,1);
}

main #index .group a:first-of-type {
	padding-top: 0;
}

main #index dl {
	display: flex;
	flex-wrap: wrap;
}

main #index dl dt {
	width: 5em;
	margin-right: 1.5em;
}

main #index dl dd {
	flex: 1;
	font-weight: bold;
}




/*------------------------------------------------------------------------------

	アーカイブ

------------------------------------------------------------------------------*/

main #archive {
	position: relative;
	padding: 60px 0;
	background-color: rgba(244,244,244,1);
}

main #archive .site_column {
	max-width: 900px;
}

main #archive .title {
	margin-bottom: 40px;
	font-size: 2em;
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
}

main #archive .title::after {
	display: block;
	content: "archive";
	font-family: Century Gothic, sans-serif;
	font-style: italic;
	font-size: .4em;
	font-weight: bold;
	color: rgba(var(--sub-color),1);
}

main #archive ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	list-style: none;
}

main #archive li {
	width: 31.33%;
	margin: 3% 3% 0 0;
}

main #archive li:nth-child(-n+3) {
	margin-top: 0;
}

main #archive li:nth-child(3n) {
	margin-right: 0;
}

main #archive li a {
	position: relative;
	display: block;
	padding: 1.25em;
	background-color: rgba(255,255,255,1);
	border-radius: 4px;
	text-decoration: none;
	font-weight: bold;
	text-align: center;
}

main #archive li a::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	right: 1em;
	width: .75em;
	height: .75em;
	background-image: url(../img/icon_arrow_blue.svg);
}

main #archive li a::after {
	content: "年";
}



/*------------------------------------------------------------------------------

	本文

------------------------------------------------------------------------------*/

main .header {
	position: relative;
    margin-top: 12vh;
    overflow: hidden;
    z-index: 0;
}

main .post {
	position: relative;
	background-color: white;
	padding-bottom: 0;
	overflow: hidden;
	z-index: 0; /* マイナスの値を使うとリンクがクリックできなくなる */
}

main .post .over_size {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
}

main .post .over_size img {
	width: 100%;
}

main .post .light_blue {
	color: rgba(var(--accent-color),1);
}

main .post .txt_left {
	text-align: left;
}

main .post .txt_center {
	text-align: center;
}

main .post .txt_right {
	text-align: right;
}


/*	余白なし
------------------------------------------------------------------------------*/

main .post .no_space {
	margin-bottom: -80px;
}



/*	コンテンツ幅
------------------------------------------------------------------------------*/

main .post .w900,
main .post .w1200 {
	position: relative;
    width: 100%;
	margin: 0 auto;
}

main .post .bg .w900,
main .post .bg .w1200 {
	width: 86%;
}

main .post .w900 {
	max-width: 900px;
}

main .post .w1200 {
	max-width: 1200px;
}


/*	背景
------------------------------------------------------------------------------*/

main .post .bg {
	position: relative;
	padding: 80px 0 60px;
}

main .post .bg::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5) 2px, rgba(248, 158, 176, 0) 0, rgba(248, 158, 176, 0) 10px);
	z-index: -1;
}

main .post .bg.sky::before {
	display: none;
}

main .post .bg::after {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	z-index: -2;
}

main .post .bg.pink::after {
	background-color: rgba(var(--sub-color),.2);
}

main .post .bg.blue::after {
	background-color: rgba(59,128,155,.2);
}

main .post .bg.sky::after {
	background-image: url("../../common/img/bg_sky.jpg");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	opacity: .4;
}

main .post .bg h1:first-of-type,
main .post .bg h2:first-of-type,
main .post .bg h3:first-of-type,
main .post .bg h4:first-of-type,
main .post .bg h5:first-of-type,
main .post .bg .heading01:first-of-type,
main .post .bg .heading02:first-of-type,
main .post .bg .heading03:first-of-type,
main .post .bg .heading04:first-of-type,
main .post .bg .heading05:first-of-type {
	margin-top: 0;
}


/*	見出し
------------------------------------------------------------------------------*/
/* h1 */
main .post h1 {
  font-family: "Helvetica Neue", "Noto Sans JP", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-color-01); /* 例: #333333 */
  position: relative;
}
main .post h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, #56C498, #E78AC3);
  border-radius: 2px;
}
/* h2 */
main .post h2 {
	padding: .65em 1em;
	font-size: 1.25em;
	background-color: rgba(var(--main-color),.15);
}
/* h3 */
main .post h3 {
	padding-bottom: .5em;
	font-size: 1.125em;
	border-bottom: 1px solid rgba(var(--main-color),.4);
}
/* h4*/
main .post h4 {
	padding: .4em 0 .4em 1em;
	border-left: 2px solid rgba(35,35,0,.2);
}
/* h5 */
main .post h5 {
	color: rgba(var(--main-color),1);
}
/* h6 */
main .post h6 {
	font-size: .875em;
	font-style: italic;
}

/* 打消し用 */
main .post .custom_heading {
	margin: 0;
	padding: 0;
	font-size: 1rem;
	background-color: transparent;
	border: none;
	font-weight: normal;
}

main .post .heading01 {
	margin: 2em 0 1em;
	font-size: 3em;
	font-weight: bold;
	text-align: center;
	line-height: 1.3;
	color: rgba(51,51,51,1);
}

main .post .heading01 span {
	display: block;
	font-family: Century Gothic, sans-serif;
	font-style: italic;
	font-size: .375em;
	font-weight: bold;
	color: rgba(51,51,51,.5);
}

main .post .heading01 span.pink {
	color: rgba(var(--sub-color),1);
}

main .post .heading01 span.blue {
	color: rgba(var(--main-color),1);
}

main .post .heading02 {
	margin: 1em 0 1.5em;
	padding: .2em;
	border-bottom: 5px solid rgba(51,51,51,.1);
	font-size: 2.625em;
	font-weight: bold;
	color: rgba(51,51,51,1);
} 

main .post .heading03 {
	position: relative;
	margin: 1em 0;
	padding: .2em;
	font-size: 2.5em;
	font-weight: bold;
	color: rgba(51,51,51,1);
} 

main .post .heading03::after {
	position: absolute;
	left: 0;
	bottom: -.2em;
	content: "";
	width: 2em;
	height: 4px;
	background-color: rgba(var(--sub-color),1);
} 

main .post .heading04 {
	margin: 2em 0 1em;
	padding: .4em 0 .4em .8em;
	border-left: 2px solid rgba(35,35,0,.2);
	font-size: 1.25em;
	font-weight: bold;
	color: rgba(51,51,51,1);
}

main .post .heading05 {
	margin: 2em 0 1em;
	font-size: 1.125em;
	font-weight: bold;
	color: rgba(var(--main-color),1);
}

main .post .heading06 {
	margin: 2em 0 1em;
	font-size: 1.625em;
	font-weight: bold;
	color: rgba(var(--accent-color),1);
	line-height: 1.4;
}



/*	column
------------------------------------------------------------------------------*/

/* 共通 */
main .post .column {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-top: 3em;
	margin-bottom: 3em;
}

main .post .column figure {
	margin: 0;
}

main .post .column .thumbnail img {
	width: 100%;
    object-fit: cover;
	aspect-ratio: 16 / 9;
}


/* 画像+文章 */
main .post .column_1-2 {
	flex-direction: row-reverse;
	align-items: center;
	margin-top: 0;
	margin-bottom: 0;
}

main .post .column_1-2 .text {
	flex: 1;
}

main .post .column_1-2 figure {
	width: 38%;
	margin: 0 6% 0 0;
}


/* 画像2枚+画像3枚 共通 */
main .post .column_2 .col:not(:nth-child(-n+2)),
main .post .column_3 .col:not(:nth-child(-n+3)) {
	margin-top: 3%;
}

main .post .column_2 .col:nth-of-type(2n),
main .post .column_3 .col:nth-of-type(3n) {
	margin-right: 0;
}


/* 画像2枚 */
main .post .column_2 .col {
	width: 48.5%;
	margin-right: 3%;
}


/* 画像3枚 */
main .post .column_3 .col {
	width: 31.3%;
	margin-right: 3%;
}


/* 画像+テキストボックス */

main .post .text_box {
	position: relative;
	margin-bottom: 5em;
}

main .post .text_box .text {
	position: absolute;
	right: 0;
	bottom: -10%;
	max-width: 500px;
	width: 95%;
	padding: 2em 2em 3em;
	background-color: rgba(255,255,255,1);
}

main .post .text_box .text .heading03 {
	margin-top: 0;
}

main .post .text_box figure {
	max-width: 900px;
	width: 100%;
	margin: 0;
}

main .post .text_box figure img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 9 / 5;
}


/*	dl_col
------------------------------------------------------------------------------*/

/* 共通 */
main .post .dl_col dl {
	display: flex;
	flex-direction: column-reverse;
	margin: 0;
}

main .post .dl_col dl dt {
	margin-top: .5em;
	padding: 0 .5em;
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
	color: rgba(var(--accent-color),1);
	line-height: 1.4;
}

main .post .dl_col dl dt span {
	display: block;
}

main .post .dl_col dl dd {
	margin: 0.2em 0 0 0;
	line-height: 1.6;
}



/* アイコン付き */
main .post .dl_col .icon .group {
	position: relative;
	padding-top: 6%;
}

main .post .dl_col .icon .group dd:last-of-type {
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	margin: 0;
	background-color: rgba(var(--accent-color),1);
	border-radius: 50%;
}

main .post .dl_col .icon .group dd img {
	width: 60%;
	height: auto;
}



/* リンク付き */
main .post .dl_col a {
	text-decoration: none;
}

main .post .dl_col a dt {
	margin-top: 1em;
	padding: 0;
	font-size: 1.125em;
	text-align: left;
}

main .post .dl_col a dt {
	display: inline-block;
	position: relative;
}

main .post .dl_col a dt::after {
	display: inline-block;
	content: "";
	width: .9em;
	height: .9em;
	margin-left: .3em;
	background-image: url("../img/icon_internal.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

main .post .dl_col a[href*="http"] dt::after {
	background-image: url("../img/icon_external.svg");
}


main .post .dl_col a dd {
	color: rgba(51,51,51,1);
}

/*	percent
------------------------------------------------------------------------------*/

main .post .percent dl {
	margin: 0;
	border: 1px solid rgba(var(--sub-color),1);
}

main .post .percent dl dt,
main .post .percent dl dd,
main .post .percent p {
	text-align: center;
}

main .post .percent dl dt {
	background-color: rgba(var(--sub-color),1);
	font-size: 1.5em;
	font-weight: bold;
	color: rgba(255,255,255,1);
}

main .post .percent dl dd {
	padding: .2em;
	font-weight: bold;
}

main .post .percent dl dd span:nth-child(1) {
	font-family: Century Gothic, sans-serif;
	font-size: 3.75em;
}

main .post .percent dl dd span:nth-child(2) {
	font-size: 2.188em;
}

main .post .percent p {
	margin-top: .8em;
	font-weight: bold;
}


/*	リンクボタン
------------------------------------------------------------------------------*/

main .post .button.blue {
	margin: 1em 0;
}

main .post .button.blue a {
	background-color: rgba(var(--accent-color),1);
	border: none;
	font-size: 1.25em;
	color: rgba(255,255,255,1);
	border-radius: 10em;
}

#archive .group dl {
    display: flex;
}

/* 通常のリンクスタイル */
main .post a {
  color: #0b3d91; /* 濃い青 */
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 4px;
}

/* 画像リンクを除外してホバー効果をつける */
main .post a:hover:not(:has(img)) {
  color: #ffffff;
  background-color: #0b3d91;
}


/* スライド
------------------------------------------------------------------------------*/

main .post .slide_linear ul,
main .post .slide_linear ul li {
	margin: 0;
}

 main .post .slide_linear ul li img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 545 / 306;
}

/* テーブル
------------------------------------------------------------------------------*/
main .post table {
    border-collapse: collapse;
    border-spacing: 0;
}
main .post th,
main .post td {
	padding: .6em 1em;
	border: 1px solid rgba(var(--main-color),1);
}
main .post th,
main .post tr td:first-child {
	/* min-width: 8em; */
	background-color: rgba(var(--main-color),.1);
}
main .post thead th {
	background-color: rgba(var(--main-color),.6);
	font-weight: bold;
	color: #FFF;
	text-align: center;
}


/* リスト
------------------------------------------------------------------------------*/
main .post li {
  list-style-type: disc;  /* .post内のliだけ点を表示 */
  line-height: 1.8;
}


/* Contact Form 7 お問い合わせフォーム
------------------------------------------------------------------------------*/
main .post .wpcf7, 
main .post .wpcf7 * {
    box-sizing: border-box;
}



/*スマホ*/
@media screen and (max-width: 767px) {

main .post .no_space {
	margin-bottom: -12vw;
}
main .post {
	padding-bottom: 2vw;
}

main .post .sp_txt_left {
	text-align: left;
}

main #index {
	margin-bottom: 12vw;
}	
main .post h1 {
    font-size: 1.45rem;
}
main #index h2 {
	font-size: 6vw;
} 	
	
main #index dl {
	flex-direction: column;
}


main .post .bg {
	padding: 10vw 0 8vw;
}
	

main #archive {
	padding: 10vw 0;
}
	
main #archive .title {
	margin-bottom: 6vw;
	font-size: 5.5vw;
}

main #archive .title::after{
	margin-top: .5em;
}	
main #archive ul {
    padding-inline-start: 0;
}
	
#content main > header {
	margin-bottom: 10vw;
	padding: 6vw 0;
}

#content main > header h1,
#content main > header p {
	font-size: 7.5vw;
}


main .post .heading01,
main .post .heading04,
main .post .heading05,
main .post .heading06 {
	margin: 6vw 0 4vw;
}

main .post .heading02,
main .post .heading03 {
	margin: 6vw 0;
} 	
	
main .post .heading01 {
	font-size: 7vw;
}

main .post .heading02 {
	font-size: 6vw;
} 

main .post .heading03 {
	font-size: 5vw;
} 

main .post .heading04 {
	font-size: 4vw;
}

main .post .heading05 {
	font-size: 3.5vw;
}

main .post .heading06 {
	font-size: 5vw;
}
	
	
main .post .column_1-2 figure {
	width: 100%;
	margin: 4vw 0 0 0;
}


main .post .text_box .text {
	margin-top: -10vw;
	padding: 4vw 5vw;
}

main .post .dl_col .col {
	width: 48.5%;
} 	

main .post .dl_col .col:nth-child(2n) {
	margin-right: 0;
}	

main .post .dl_col .col:nth-child(3) {
	margin-top: 3%;
	margin-right: 3%;
}	
	
main .post .dl_col dl dt {
	text-align: left;
	padding: 0;
	font-size: 3.2vw;
}

main .post .dl_col dl dt+dd {
	font-size: 3vw;
	margin: 0.2em 0 0 0;
}

main .post .dl_col .icon .group,
main .post .column_2.dl_col .icon .group {
    padding-top: 6vw;
}	

main .post .dl_col .icon .group dd:last-of-type {
	position: absolute;
	top: -5vw;
	width: 10vw;
	height: 10vw;
}

main .post .column_3.percent .col {
	width: 100%;
	margin: 1em 0 0 0;
}

main .post .column_3.percent .col:first-of-type {
	margin-top: 0;
}	


main .post .dl_col a dt {
	font-size: 3.2vw;
}	


}

/*タブレット1*/
@media screen and (max-width: 1024px) {
	
main .post .dl_col dl dt {
	font-size: 1.25em;
}

main .post .dl_col dl dt {
	font-size: 1.125em;
}


	
main .post .dl_col .icon .group {
	padding-top: 15%;
}

main .post .column_2.dl_col .icon .group {
	padding-top: 9%;
}	
	
}


/*タブレット2*/
@media screen and (max-width: 900px) {

main .post .text_box {
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-end;
	margin-bottom: 2em;
}	
	
main .post .text_box .text {
	position: relative;
	right: 0;
	bottom: 0;
	max-width: 500px;
	margin-top: -5em;
}	
main .post .heading01 {
	margin: 1.5em 0 .8em;
	font-size: 5vw;
}
	
main .post .dl_col .icon .group {
	padding-top: 16%;
}
	
}









