@charset "utf-8";
@media print {
    body { display: none }
}

*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
}

html{
	width:100%;
	height:100%;
}

body {
	color: ##33343a;
	font-family: Oswald;
	font-size: 16px;
	margin: 0 auto;
}

main{
	display: block;
	width:100%;
	height:100%;
}

section{
	margin: 20px auto;
}

h1{
	margin: 0;
	padiing: 0;
	text-align: left;
}

h2{
	margin: 0;
	padiing: 0;
	text-align: left;
}

a {
	text-decoration: none;
	color: #33343a;
	cursor: pointer;
	transition: 0.3s;
}

a:hover{
	background color:  #e8e8e8;
}

img {
	max-width: 100%;
	/* PCの右クリック禁止 */
	pointer-events: none;
}

li {
	list-style: none;
}

.pc{
	display: block;
}

.sp{
	display: none;
}

.fadeUp{
	animation-name:fadeUpAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes fadeUpAnime{
	from{
		opacity: 0;
		transform: translateY(100px);
	}

	to{
		opacity: 1;
		transform: translateY(0);
	}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
	opacity: 0;
}

.note{
	font-size: 10px;
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
.header {
	display: flex;
	margin: 10px auto;
	position: relative;
	width: 100%;
}

.header .site-title {
	width: 310px;
	padding: 0;
	margin: 0;
	position: absolute;
	left: 15px;
	font-size: 20px;
}

.header .site-title a {
	display: block;
	width: 100%;
}

/*--------------------------------
グローバルナビ
---------------------------------*/
.hdnav {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
	width: 15vw;
	background-color: #ffff;
	box-shadow: calc((-10/750)*100vw) 0 calc((35/750)*100vw) calc((-20/750)*100vw) rgb(0 0 0 / 25%);
}

.show{
	width: 15%;
	height: 50%;
}

.hdnav_list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 3vw 0 2vw;
	padding: 0 0 0 2vw;
	gap: 25px;
}

.hdnav_item{
	font-size: 16px;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.05em;
	width: 135px;
	height: 30px;
	text-align: center;
	position: relative;
}

.hdnav_item a:hover {
	opacity: 0.6;
}

.btn-menu {
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 100;
	align-items: center;
	justify-content: center;
	width: 3vw;
	height: 3vw;
	text-align: center;
	border: none;
	outline: none;
	background: none;
	background-color: #ffffff00;
	cursor: pointer;
	appearance: none;
}

.btn-menu_line {
	display: block;
	position: relative;
	left: 0;
	width: 100%;
	height: 2px;
	transition: all 0.4s;
	border-radius: 4px;
	background-color: #4a3f3b;
}

.btn-menu_line::before,
.btn-menu_line::after {
	display: block;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	transition: inherit;
	border-radius: calc((4/750)*100vw);
	background-color: #383e45;
}
	.btn-menu_line::before {
	top: -12px;
}

.btn-menu_line::after {
	top: 12px
}

.btn-menu.active .btn-menu_line {
	background-color: transparent;
}

.btn-menu.active .btn-menu_line::before,
.btn-menu.active .btn-menu_line::after {
	top: 0;
	background-color: #383e45;
}

.btn-menu.active .btn-menu_line::before {
	transform: rotate(45deg);
}

.btn-menu.active .btn-menu_line::after {
	transform: rotate(-45deg);
}

 .hdnav_link-active {
	color: #383e45;
}

.hdnav_link-active#home{
	left: 8%;
	width: 130px;
	height: 25px;
	background-image: url(../img/icon_01.png);
	background-size: 25%;
    background-position: 7px -4px;
    position: absolute;
    background-repeat: no-repeat;
}

.hdnav_link-active#news{
	left: 8%;
	width: 130px;
	height: 25px;
	background-image: url(../img/icon_02.png);
	background-size: 25%;
    background-position: 7px -4px;
    position: absolute;
    background-repeat: no-repeat;
}

.hdnav_link-active#it{
	left: 13%;
	width: 130px;
	height: 25px;
	background-image: url(../img/icon_03.png);
	background-size: 25%;
    background-position: 0px -4px;
    position: absolute;
    background-repeat: no-repeat;
}

.hdnav_link-active#travel{
	left: 10%;
	width: 130px;
	height: 25px;
	background-image: url(../img/icon_04.png);
	background-size: 27%;
    background-position: -1px -6px;
    position: absolute;
    background-repeat: no-repeat;
}

.hdnav_link-active#about{
	left: 8%;
	width: 130px;
	height: 25px;
	background-image: url(../img/icon_05.png);
	background-size: 27%;
    background-position: 5px -1px;
    position: absolute;
    background-repeat: no-repeat;
}

.hdnav_link-active#info{
	left: 8%;
	width: 180px;
	height: 25px;
	background-image: url(../img/icon_06.png);
	background-size: 20%;
    background-position: 4px -4px;
    position: absolute;
    background-repeat: no-repeat;
}

/*-------------------------------------------
メインビジュアル
-------------------------------------------*/
.mv {
    max-width: 100%;
    margin: auto;
}

.kv {
    width: 100%;
}

.kv_item {
    width: 100%;
}

.kv_item img {
    width: 100%;
    display: block;
}

/*--------------------------------
新着情報
---------------------------------*/
.news{
	width:1200px;
	margin: 20px auto 0;
	background-color: #fff;
	background-size: cover;
}

.news .container{
	border: 1px solid #6bc1fd;
	border-radius: 5px;
	padding: 10px;
}

.news .inner {
	display: flex;
	flex-direction: column;
}

.news_header{
	margin: 0 20px;
	padding: 0;
	font-size: 16px;
}

.news_body {
	flex: 1;
}

.news_list ul{
	list-style-type: none; /* デフォルトのリストスタイルを削除 */
	padding: 0;
}

.news_item {
	display: flex;
	font-size: 15px;
	line-height: 1.8;
}

.news_item:last-child {
	margin-bottom: 0;
}

.item_date {
	margin-right: 0 20px;
}

.news_txt {
	font-size: 16px;
	line-height: 1.8;
}

.news_list .link {
	text-decoration: underline;
}

/*--------------------------------
IT関連一覧
---------------------------------*/
.it{
	width:1200px;
	margin: 30px auto;
	background-color: #f3faff;
	background-size: contain;
}

.it .container{
	position: relative;
}

.it .inner {
	display: flex;
	flex-direction: column;
}

.it_header{
	margin: 0 20px;
	padding: 10px 0;
}

.recome{
	position: absolute;
	top: 5px;
	left: 195px;
	font-size: 12px;
}

.it_body {
	flex: 1;
	margin: 0 40px;
}

.it_list{
	margin: 0;
	padding 0;
}

.it_item {
	font-size: 15px;
	line-height: 1.8;
	list-style-type: disclosure-closed;
}

.it_item:last-child {
	margin-bottom: 0;
}

.it_txt {
	text-decoration: none;
	font-size: 15px;
	line-height: 1.8;
	cursor: pointer;
	transition: 0.3s;
}

.item_date {
	margin-right: 20px;
}

.it_btn{
	margin: 0 auto;
}

/*-------------------------------------------
Travelog
-------------------------------------------*/
.travelog{
	width:1200px;
	background-color: #f3faff;
	background-size: contain;
	margin: 30px auto;
}

.travelog_header{
	margin: 0 20px;
	padding: 10px 0;
}

.travelog_contents{
	width: 1115px;
	margin: 0 auto;
}

/* .trip{
	width: 284px;
}

details {
	border: 1px solid #aaa;
	border-radius: 4px;
	padding: 0.5em 0.5em 0;
}

summary {
	font-weight: bold;
	margin: -0.5em -0.5em 0;
	padding: 0.5em;
}

details[open] {
	padding: 0.5em;
} */

.insta_list{
	display: flex;
	justify-content: center;
	gap: 20px;
	padding: 0;
	margin: 0;
	margin-bottom: 10px;
}

.insta_list li{
	position: relative;
	width: 250px;
}

.insta_list li::before{
	content: "";
	display: block;
	padding-top: 100%;
}

.insta_list a{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}

.insta_list img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.insta_btn{
	padding: .5em 1em;
	width: fit-content;
	margin: 0 auto;
	cursor: pointer;
	transition: .3s
}

.insta_btn a{
	color: #4a3f3b;
	text-decoration: none;
}
.insta_btn:hover{
	background-color: #ffff;
}

/*-------------------------------------------
Infomation
-------------------------------------------*/
.information{
	width:1200px;
	display: flex;
	gap: 80px;
	margin: 30px auto;

}

/*---------- About ----------*/

.about{
	width: 560px;
	padding: 2%;
	background-color: #d4e5ff;
	position: relative;
}

.about:after{
	position: absolute;
	content: '';
	right: 0px;
	top: 0px;
	border-width: 0 15px 15px 0;
	border-style: solid;
	border-color: #ccc #fff  #ccc;
	box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
}

.about_header{
	margin: 0 40px;
}

.profile {
	display: flex;
	flex-direction: column;
	gap: 25px;
	justify-content: space-between; 
	align-items: center;
}

.profile-text{
	width: 530px;
	padding: 10px;
}

.profile-img {
	width: 100px;
	height: 100px;
	margin: 0 auto;
}

.profile-img img{
	border-radius: 50%;
}

.profile-text .text-title, .profile-text .profile-detail{
	margin: 0 10px;
}

.history{
	width: 650px;
}

.history ul{
	padding: 0;
}

.history .history_year{
list-style:inside;
}

.portfolio{
	width: 200px;
	margin: 0 auto;
	background-color: #ffff;
	text-align: center;
	border-radius: 4px;
}

/*---------- お問い合わせ ----------*/
.info{
	width: 560px;
	padding: 2%;
	background-color: #7b7b7b;
	position: relative;
	color: #ffff;
}

.info:after{
	position: absolute;
	content: '';
	right: 0px;
	top: 0px;
	border-width: 0 15px 15px 0;
	border-style: solid;
	border-color: #ccc #fff  #ccc;
	box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
}

.info_header{
	margin: 0 40px;
}

.info p{
	font-size: 16px
}

.info .container{
	padding: 10px;
}

.info_inner{
	width: 445px;
	margin: 0 auto;
}

.info_body{
	margin: 0 auto;
	width: 430px;
}

.info_form{
	width: 200px;
	margin: 0 auto;
	background-color: #ffff;
	text-align: center;
	border-radius: 4px;	
}

.info_form a{
	color: #4a3f3b
}

.instagram_inner{
	width: 445px;
	margin: 0 auto;
}

.instagram_body{
	margin: 0 auto;
	width: 480px;
}

.gingerlilly_insta{
	width: 200px;
	margin: 0 auto;
	background-color: #ffff;
	text-align: center;
		border-radius: 4px;	
}

#popup {
	display: none; /* label でコントロールするので input は非表示に */
}

.popup-open {
    line-height: 1.6;
    display: inline-block;
    background: -webkit-linear-gradient(30deg,#065ef6,#bc65dc,#eb5234);
    -webkit-background-clip: text;/*背景をテキストでマスクする*/
    -webkit-text-fill-color: transparent;
    position: relative;
	cursor: pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}

.popup-overlay {
	display: none; /* input にチェックが入るまでは非表示に */
}

#popup:checked ~ .popup-overlay {
	display: block;
	z-index: 99999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}

.popup-window {
	width: 90vw;
	max-width: 560px;
	padding: 20px;
	background-color: #ffffff;
	border-radius: 6px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.popup-text {
	margin: 0;
}

.popup-text:not(:last-of-type) {
	margin-bottom: 1em
}

.popup-close {
	cursor: pointer;
	position: absolute;
	top: -26px;
	right: 0;
}

/*-------------------------------------------
footer
-------------------------------------------*/
.footer {
	text-align: center;
	padding: 10px 0;
}

.footer p {
	font-size: 10px
}

/*-------------------------------------------
タブレット版
-------------------------------------------*/
@media screen and (min-width:769px) and ( max-width:1024px) {
	img{
	/* SPの長押し禁止 */
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-moz-touch-callout:none;
	-moz-user-select:none;
	user-select:none;
	}

	section{
		margin: calc((20/750)*100vw) auto;
	}

	.pc{
		display: none;
	}

	.sp{
		display: block;
	}

	.note{
		font-size: 10px;
	}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
	.header {
		margin: 10px auto;
		width: 100%;
	}

	.header .site-title {
		width: calc((310/750)*100vw);
		left: 15px;
		font-size: 20px;
	}

	.header .site-title a {
		width: 100%;
	}

/*--------------------------------
グローバルナビ
---------------------------------*/
	.show{
		width: 20%;
		height: 35%;
	}

	.btn-menu {
		width: 4vw;
		height: 3vw;
	}

	.btn-menu_line::before {
		top: -12px;
	}

	.btn-menu_line::after {
		top: 12px
	}

	.hdnav_list {
		margin: 6vw 0 2vw;
	}




/*--------------------------------
新着情報
---------------------------------*/
	.news{
		width:100%;
	}

/*--------------------------------
IT関連一覧
---------------------------------*/
	.it{
		width:100%;
	}

/*-------------------------------------------
Travelog
-------------------------------------------*/
	.travelog{
		width:100%;
	}

	.travelog_contents{
		width: 100%;
	}

	.insta_list{
		gap: calc((20/768)*100vw);
	}

/*-------------------------------------------
Infomation
-------------------------------------------*/
	.information{
		width:100%;
	}
	/*---------- About ----------*/

	.about{
		width: 45%;
		padding: 2%;
		margin: 0 calc((20 / 750)* 100vw);
	}

	.about_header{
		margin: 0 40px;
		font-size: 20px;
	}

	.profile-text{
		width: calc((320/750)*100vw);
		padding: 10px;
	}

	.profile-text .text-title,
	.profile-text .profile-detail,
	.portfolio a{
		font-size: 14px;
	}

	.portfolio{
		width: calc((170/750)*100vw);
	}
	

/*---------- お問い合わせ ----------*/
	.info{
		width: 45%;
		padding: 2%;
		margin: 0 calc((20 / 750)* 100vw);
	}

	.info_header{
		font-size: 20px;
	}

	.info p{
		font-size: 12px
	}

	.info_inner{
		width: calc((200/750)*100vw);
		margin-bottom: 40px;
	}

	.info_body{
		width: calc((230/750)*100vw);
	}

	.info_form,
	.gingerlilly_insta{
		width: calc((170/750)*100vw);
	}

	.info_form a{
		font-size: 14px;
	}

	.instagram_inner,
	.instagram_body{
		width: calc((200/750)*100vw);
	}
}

/*-------------------------------------------
スマホ版
-------------------------------------------*/
@media screen and (max-width: 768px) {

	html{
	max-width: 768px !important;
	margin: 0 auto;
	}
	

	img{
	/* SPの長押し禁止 */
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-moz-touch-callout:none;
	-moz-user-select:none;
	user-select:none;
	}

	section{
		margin: calc((20/750)*100vw) auto;
	}

	.pc{
		display: none;
	}

	.sp{
		display: block;
	}

	.note{
		font-size: 10px;
	}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
	.header {
		margin: 10px auto;
		position: relative;
		width: 100%;
	}

	.header .site-title {
		width: calc((260/750)*100vw);
		left: 10px;
		font-size: 15px;
	}

	.header .site-title a {
		display: block;
		width: 100%;
	}

/*--------------------------------
グローバルナビ
---------------------------------*/
	.show{
	width: 30%;
	height: 35%;
	}

	.btn-menu {
		width: 7vw;
		height: 7vw;
		top: -11px;
	}

	.btn-menu_line::before {
	top: -12px;
	}

	.btn-menu_line::after {
		top: 12px
	}
	
		.hdnav_list {
		margin: 6vw 0 2vw;
	}

	.hdnav_link-active#home{
		left: 8%;
		width: 130px;
		height: 25px;
		background-size: 25%;
    	background-position: 7px -4px;
	}

/*--------------------------------
新着情報
---------------------------------*/
	.news{
		width:100%;
	}

	.news .container{
		padding: 10px;
		margin: 5%;
	}

	.news_header{
		margin: 0 20px;
		padding: 0;
		font-size: 16px;
	}

	.news_item {
		font-size: 12px;
		line-height: 2.8;
	}

	.news_item:last-child {
		margin-bottom: 0;
	}

	.item_date {
		margin-right: 0 20px;
	}

	.news_txt {
		font-size: 16px;
		line-height: 1.8;
	}
	
	.news_txt a{
		font-size: 12px
	}

/*--------------------------------
IT関連一覧
---------------------------------*/
	.it{
		width:90%;
	}

	.it_header{
		margin: 0 10px;
		padding: 10px 0;
	}

	.recome{
		top: 5px;
		left: 195px;
		font-size: 12px;
	}

	.it_body {
		margin: 0 -12px;
	}

	.it_list{
		margin: 0;
		padding 0;
	}

	.it_item {
		font-size: 15px;
		line-height: 1.8;
	}

	.it_item:last-child {
		margin-bottom: 0;
	}

	.it_txt {
		text-decoration: none;
		font-size: 14px;
		line-height: 1.8;
		cursor: pointer;
		transition: 0.3s;
	}

	.item_date {
		margin-right: 20px;
	}

	.it_btn{
		margin: 0 auto;
	}

/*-------------------------------------------
Travelog
-------------------------------------------*/
	.travelog{
		width:90%;
	}

	.travelog_header{
		margin: 0 20px;
		padding: 10px 0;
	}

	.travelog_contents{
		width: 100%;
		margin: 0 auto;
	}

	.insta_list{
		flex-wrap: wrap;
		justify-content: center;
		gap: calc((20/768)*100vw);
		padding: 0;
		margin: 0;
		margin-bottom: 10px;
	}

	.insta_list li{
		width: 30%;
	}

	.insta_list li::before{
		padding-top: 100%;
	}

	.insta_list a{
		top: 0;
		width: 100%;
		height: 100%;
	}

	.insta_list img{
		width: 100%;
		height: 100%;
	}

	.insta_btn{
		padding: .5em 1em;
		margin: 0 auto;
	}

/*-------------------------------------------
Infomation
-------------------------------------------*/
	.information{
		width:100%;
		gap: calc((20/768)*100vw);
		margin: 30px auto;
	}

/*---------- About ----------*/

	.about{
		width: 45%;
		padding: 2%;
		margin: 0 calc((20 / 750)* 100vw);
	}

	.about_header{
		margin: 0 40px;
		font-size: 20px;
	}

	.profile-text{
		width: calc((320/750)*100vw);
		padding: 10px;
	}

	.profile-text .text-title,
	.profile-text .profile-detail,
	.portfolio a{
		font-size: 14px;
	}

	.portfolio{
		width: calc((170/750)*100vw);
	}
	

/*---------- お問い合わせ ----------*/
	.info{
		width: 45%;
		padding: 2%;
		margin: 0 calc((20 / 750)* 100vw);
	}

	.info_header{
		font-size: 20px;
	}

	.info p{
		font-size: 12px
	}

	.info_inner{
		width: calc((200/750)*100vw);
		margin-bottom: 40px;
	}

	.info_body{
		width: calc((230/750)*100vw);
	}

	.info_form,
	.gingerlilly_insta{
		width: calc((170/750)*100vw);
	}

	.info_form a{
		font-size: 14px;
	}

	.instagram_inner,
	.instagram_body{
		width: calc((200/750)*100vw);
	}

/*-------------------------------------------
footer
-------------------------------------------*/
	.footer p {
		font-size: 14px
	}
}


@media screen and (min-width:320px) and ( max-width:750px) {
/*-------------------------------------------
ヘッダー
-------------------------------------------*/
	.header {
		margin-bottom: 30px;
	}
	
	.btn_menu{
		top: 4px;
	}

	.btn-menu_line::before{
	top: -7px;
	}
	
	.btn-menu_line::after{
	top: 7px;
	}
	
/*--------------------------------
グローバルナビ
---------------------------------*/
	.show{
		width: 50%;
		height: 60%;
	}

	.hdnav_list {
		margin: 10vw 0 2vw;
		padding: 0 0 0 2vw;
		gap: 25px;
	}

	.hdnav_item{
		font-size: 16px;
		width: 135px;
		height: 30px;
	}

	.btn-menu {
		width: 9vw;
		height: 7vw;
		top: 2px;
	}

	.btn-menu_line::before {
		top: -8px;
	}

	.btn-menu_line::after {
		top: 8px
	}

	.hdnav_link-active#home{
		left: 8%;
		width: 130px;
		height: 25px;
		background-size: 25%;
    	background-position: 7px -4px;
	}

	.hdnav_link-active#news{
		left: 8%;
		width: 130px;
		height: 25px;
		background-size: 25%;
    	background-position: 7px -4px;
	}

	.hdnav_link-active#it{
		left: 13%;
		width: 130px;
		height: 25px;
		background-size: 25%;
    	background-position: 0px -4px;
	}

	.hdnav_link-active#travel{
		left: 10%;
		width: 130px;
		height: 25px;
		background-size: 27%;
    	background-position: -1px -6px;
	}

	.hdnav_link-active#about{
		left: 8%;
		width: 130px;
		height: 25px;
		background-size: 27%;
    	background-position: 5px -1px;
	}

	.hdnav_link-active#info{
		left: 8%;
		width: 180px;
		height: 25px;
		background-size: 20%;
    	background-position: 4px -4px;
	}

/*-------------------------------------------
Travelog
-------------------------------------------*/
	.insta_list li{
		width: 90%;
	}


	.insta_btn{
		padding: 0.5em;
	}

	.insta_btn a{
		font-size: 20px;
	}

/*-------------------------------------------
Infomation
-------------------------------------------*/
	.information{
		flex-direction: column;
	}

/*---------- About ----------*/

	.about{
		width: 95%;
	}

	.profile-text{
		width: 100%;
	}

	.portfolio{
		width: 40%;
	}

/*---------- お問い合わせ ----------*/
	.info{
		width: 95%;
	}

	.info p,
	.info_form a{
		font-size: 14px
	}

	.info_inner,
	.info_body,
	.instagram_inner,
	.instagram_body{
		width: 100%;
	}
	
		.info_form,
	.gingerlilly_insta{
		width: 60%;
	}
}