@charset "utf-8";
/* CSS Document */

/* formatting-style mobile-first
--------------------------------------------*/

* {
	margin: 0;
	padding: 0;
	box-sizing: inherit;
}

html {
	height: 100%;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	min-width: 320px;
	height: 100%;
	color: #0b4f49;
	font-family: '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.05em;
}

/* 画像の下に出来る空間を防止する*/
img {
	vertical-align: top;
}

/* リストのマークは基本無し*/
ul {
	list-style: none;
}

/* 遷移のアニメーション -------------------*/

content {
	opacity: 0;
	pointer-events: none;
}

.rhombus .content {
	opacity: 1;
}

body.appear:not(.rhombus) .content {
	-webkit-animation-name: PageAnime-content;
	animation-name: PageAnime-content;
	-webkit-animation-duration: 0.55s;
	animation-duration: 0.55s;
	-webkit-animation-delay: 0.55s;
	animation-delay: 0.55s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	opacity: 0;
	pointer-events: auto;
}

.animation .content {
	opacity: 1;
	pointer-events: auto;
}

@-webkit-keyframes PageAnime-content {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes PageAnime-content {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.move .animation-bg {
	background: #FEDFE1;
	display: block;
	content: "";
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.ttb .animation-bg {
	-webkit-animation-name: PageAnime-ttb;
	animation-name: PageAnime-ttb;
}

@-webkit-keyframes PageAnime-ttb {
	0% {
		transform-origin: top;
		transform: scaleY(0);
	}

	50% {
		transform-origin: top;
		transform: scaleY(1);
	}

	50.001% {
		transform-origin: bottom;
	}

	100% {
		transform-origin: bottom;
		transform: scaleY(0);
	}
}

@keyframes PageAnime-ttb {
	0% {
		transform-origin: top;
		transform: scaleY(0);
	}

	50% {
		transform-origin: top;
		transform: scaleY(1);
	}

	50.001% {
		transform-origin: bottom;
	}

	100% {
		transform-origin: bottom;
		transform: scaleY(0);
	}
}

/* fadeUp */

.fadeUp {
	-webkit-animation-name: fadeUpAnime;
	animation-name: fadeUpAnime;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger {
	opacity: 0;
}


/* all style
--------------------------------------------*/

/* 背景を抜かしたコンテンツ全体の横幅--*/
.container {
	min-width: 300px;
	width: 90%;
	margin: 0 auto;
}

/* 全体のテキスト＋a-----------------*/

h2 {
	font-family: 'Josefin Sans', 'Noto Sans JP', '游ゴシック', YuGothic, sans-serif;
}

h2 span {
	font-size: .8em;
	letter-spacing: 0.01em;
}

h3,
h4 {
	margin-bottom: 10px;
	font-weight: 500;
}

p {
	margin-bottom: 10px;
	font-weight: 500;
}

/* リンクの色（設定がない箇所）--*/
a:link {
	color: #1558d6;
	text-decoration: none;
}

a:visited {
	color: #1558d6;
}

a:hover {
	color: #1558d6;
	text-decoration: underline;
}

a:active {
	color: #1558d6;
}

/* 特に指定してない場合の表（テーブル）--*/
table {
	margin: 20px auto;
}

/* 幅が小さい場合に改行※大きくなると改行は無くしたい箇所--*/
.no-pc,
.no-tb {
	display: block;
}

/* 幅が小さい場合に改行を無くす※大きくなると改行したい箇所--*/
.no-sp {
	display: none;
}

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

/* 上部固定ナビ-------------*/
#header {
	height: 60px;
	/*高さ指定*/
	width: 100%;
	/*横幅指定*/
	background: #FEDFE1;
	color: #0b4f49;
	font-family: 'Josefin Sans', 'Noto Sans JP', '游ゴシック', YuGothic, sans-serif;
}

/*JSを使いfixedクラスが付与された際の設定*/
#header.fixed {
	position: fixed;
	/*fixedを設定して固定*/
	z-index: 100;
	top: 0;
	left: 0;
}

.top-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 auto;
	width: 100%;
}

.top-wrap {
	z-index: 150;
	display: flex;
	flex-flow: column wrap;
	align-items: center;
	padding-left: 10px;
}

/* ページ上部のページの説明--*/
.top-wrap h1 {
	white-space: nowrap;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.3em;
	padding-top: 5px;
}

.top-wrap h1 a {
	color: #0b4f49;
}

.top-wrap h1 a:hover {
	color: #0b4f49;
	text-decoration: none;
}

.top-wrap h2 {
	white-space: nowrap;
	font-weight: normal;
	font-size: 16px;
	font-weight: 500;
}

.top-more-btn {
	position: relative;
	display: inline-block;
	width: auto;
	margin: 5px 0;
	padding: 0 2em 0 1em;
	line-height: 30px;
	font-size: 12px;
	background: transparent;
	color: #0b4f49 !important;
	text-decoration: none !important;
	border: 1px solid #0b4f49;
	z-index: 1;
}

/* ボタンの矢印アイコン */
.top-more-btn::before {
	content: '';
	border: 0;
	border-top: solid 1px #0b4f49;
	border-right: solid 1px #0b4f49;
	display: inline-block;
	width: 8px;
	height: 8px;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%) rotate(45deg);
	/* rotate(45deg)で矢印を回転（向きを変更）させる */
}

/* ホバーで色変え */
.top-more-btn::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: #0b4f49;
	transform-origin: 100% 50%;
	transform: scaleX(0);
	transition: transform ease .3s;
}

.top-more-btn:hover {
	color: #fff !important;
	transition: .5s;
}

.top-more-btn:hover::before {
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	transition: .5s;
}

.top-more-btn:hover::after {
	transform-origin: 0% 50%;
	transform: scaleX(1);
}

/* ハンバーガーボタン--*/
.top-nav-btn-input {
	display: none;
}

.top-nav-btn {
	display: inline-block;
	position: relative;
	z-index: 200;
	background: #FEDFE1;
	cursor: pointer;
	width: 60px;
	height: 60px;
}

.top-nav-btn span {
	display: inline-block;
	transition: all .4s;
	/*アニメーションの設定*/
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	height: 2px;
	background: #0b4f49;
	width: 45%;
}

.top-nav-btn span:nth-of-type(1) {
	top: 25%;
}

.top-nav-btn span:nth-of-type(2) {
	top: 45%;
}

.top-nav-btn span:nth-of-type(2)::after {
	content: "Menu";
	/*2つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	color: #0b4f49;
	font-size: 0.7rem;
	text-transform: uppercase;
}

.top-nav-btn.active span:nth-of-type(1) {
	top: 14px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 30%;
}

.top-nav-btn.active span:nth-of-type(2) {
	top: 26px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 30%;
}

.top-nav-btn.active span:nth-of-type(2)::after {
	content: "Close";
	transform: translateY(0) rotate(-45deg);
	top: 5px;
	left: 4px;
}

.top-nav {
	position: fixed;
	top: 60px;
	right: 0;
	z-index: 140;
	width: 100%;
	padding: 20px;
	text-align: center;
	background-color: #fef1f1;
	transform: translateY(-160%);
	transition: transform ease .3s;
}

#check:checked~.top-nav {
	transform: translateY(0%);
}

.top-nav ul,
.top-nav-pc ul {
	list-style: none;
}

.top-nav ul li {
	margin-bottom: 10px;

}

.top-nav ul li a {
	display: block;
	color: #0b4f49 !important;
	padding: 10px;
	transition: all 0.3s;
}

.top-nav ul li span {
	display: block;
	color: #0b4f49 !important;
	font-size: 10px;
	font-weight: 600;
}

.top-nav ul li:last-child {
	border-top: solid 1px #0b4f49;
	padding: 20px 0 10px;
}

.top-nav-pc {
	display: none;
}


/* main style　各ページ共通で使用しているCSS
--------------------------------------------*/

/* 白の背景 */
.bg-w {
	padding-top: calc(10vw + 10px);
	position: relative;
	overflow: hidden;
	background-color: #fff;
}

/* 三角を上につけて背景斜めに見せる */
.bg-w::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	border-top: 10vw solid #FEDFE1;
	border-right: 100vw solid transparent;
}

/* ピンクの背景 */
.bg-p {
	padding-top: calc(10vw + 10px);
	position: relative;
	overflow: hidden;
	background-color: #FEDFE1;
}

.bg-p::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	border-top: 10vw solid #fff;
	border-right: 100vw solid transparent;
}


/* コンテンツ--*/
article {
	padding-bottom: 40px;
}

/* 要素の中で100％に表示*/
article img {
	width: 100%;
}

/* 要素の中の見出しの文字の大きさとレイアウト（装飾は別）*/
article h2 {
	margin: 20px 0;
	text-align: center;
	font-weight: 400;
	font-size: 28px;
	letter-spacing: 0.2em;
}

article h2 span,
article h3 span {
	display: block;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.05em;
}


/* レイアウト：Flex　→　要素が並ぶスタイル--*/
.flex-wrap {
	display: flex;
	flex-flow: column wrap;
	margin: 0 auto;
}

/* Float　→　要素が並ぶスタイル。スマホでは縦に並ぶだけ--*/
.float-left50,
.float-right50,
.float-left60,
.float-right40,
.float-left40,
.float-right60,
.float-left30,
.float-right70,
.float-left70,
.float-right30 {
	float: none;
	width: 100%;
	margin-bottom: 20px;
}

/* Float解除　→　floatの親要素のclassに入れる--*/
.clear::after {
	content: "";
	display: block;
	clear: both !important;
}

/* Float解除　→　上記が効かなかった場合<hr>単体で入れる--*/
hr {
	margin: 0px 0px;
	padding: 0;
	clear: both;
	height: 0;
	border: none;
}

/* 追加で下に空間を開ける--*/
.mb {
	margin-bottom: 32px !important;
}

/* 追加で上に空間を開ける--*/
.mt {
	margin-top: 32px !important;
}

/* 文字中央寄せ--*/
.tac {
	display: block;
	text-align: center;
}

/* 右寄せ--*/
.tar {
	display: block;
	text-align: right;
}

/* 中央寄せ*/
.lead {
	margin: 20px auto;
}

/* PC版は横幅小さく調整--*/
.wid {
	margin: 0 auto;
}

/* 補足文字*/
.sup {
	font-size: 0.8em;
	color: #aaa;
}


/* ボタンのレイアウト*/
.more-btn {
	position: relative;
	display: inline-block;
	width: 180px;
	height: 40px;
	margin: 10px 0;
	padding: 0 2em 0 1em;
	line-height: 40px;
	font-size: 13px;
	background: transparent;
	color: #0b4f49 !important;
	text-decoration: none !important;
	border: 1px solid #0b4f49;
	z-index: 1;
}

/* ボタンの矢印アイコン */
.more-btn::before,
.more-btn-line::before {
	content: '';
	border: 0;
	border-top: solid 1px #0b4f49;
	border-right: solid 1px #0b4f49;
	display: inline-block;
	width: 8px;
	height: 8px;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%) rotate(45deg);
	/* rotate(45deg)で矢印を回転（向きを変更）させる */
}

/* ホバーで色変え */
.more-btn::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: #0b4f49;
	transform-origin: 100% 50%;
	transform: scaleX(0);
	transition: transform ease .3s;
}

.more-btn:hover {
	color: #fff !important;
	transition: .5s;
}

.more-btn:hover::before {
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	transition: .5s;
}

.more-btn:hover::after {
	transform-origin: 0% 50%;
	transform: scaleX(1);
}

.more-btn-line {
	position: relative;
	display: inline-block;
	width: 180px;
	height: 40px;
	margin: 10px 0;
	padding: 0 2em 0 1em;
	line-height: 40px;
	font-size: 13px;
	background: transparent;
	color: #0b4f49 !important;
	text-decoration: none !important;
	border-bottom: 1px solid #0b4f49;
}

/* リスト・点の付いた箇条書き--*/
.list-nomal {
	list-style: inside;
	margin: 10px 0 10px 100px;
}

.list-nomal li {
	margin-bottom: 5px;
}

/* 囲み枠--*/
.box-line {
	margin: 2em 0;
	position: relative;
	padding: 20px;
	border-top: solid 1px #0b4f49;
	border-bottom: solid 1px #0b4f49;
}

.box-line:before,
.box-line:after {
	content: '';
	position: absolute;
	top: -10px;
	width: 1px;
	height: calc(100% + 20px);
	background-color: #0b4f49;
}

.box-line:before {
	left: 5px;
}

.box-line:after {
	right: 5px;
}

.box-line p {
	margin: 0;
	padding: 0;
}

/* タイトル--*/

.ttl-line {
	padding: .2em;
	margin-bottom: 20px;
	border-bottom: 1px solid #0b4f49;
}

.ttl-box,
.ttl-box-l {
	margin-left: 10px;
	width: 120px;
	line-height: 30px;
	text-align: center;
}

.ttl-box {
	background: #0b4f49;
	color: #fff;
	margin-top: 10px;
}

.ttl-box-l {
	border: 1px solid #0b4f49;
	margin-bottom: 20px;
}

.ttl-circle {
	position: relative;
	padding-left: 25px;
	font-weight: 600;
	margin-top: 20px;
}

.ttl-circle:before {
	position: absolute;
	content: "";
	background: #0b4f49;
	border-radius: 50%;
	left: 0;
	width: 16px;
	height: 16px;
	top: 50%;
	transform: translateY(-50%);
}

/* index style　indexページに関わるCSS
--------------------------------------------*/

.main-message {
	text-align: center;
}

.main-message h2 {
	margin: 40px 0;
	font-size: 30px;
	line-height: 1.4;
}

.main-message>p {
	word-break: keep-all;
}

.main-message img {
	width: 50%;
	height: auto;
}


.main-about {
	display: block;
	text-align: center;
	margin: 60px 0;
}

.main-about-text {
	margin-bottom: 24px;
}

.about-img,
.message-img {
	display: inline-block;
	width: 120px;
	height: 120px;
	border-radius: 43% 57% 55% 45% / 54% 55% 45% 46%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: 54% 36%;
	object-position: 54% 36%;
	margin-bottom: 20px;
}

.main-works {
	display: grid;
	grid-template-columns: 1fr;
	margin: 0 auto;
	gap: 20px;
}

.main-works>div {
	position: relative;
	padding: 20px;
	margin: 0 auto 20px;
	background: #fcf4f4;
}


.main-works h3 {
	margin-bottom: 20px;
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	white-space: nowrap;
	font-family: 'Josefin Sans', 'Noto Sans JP', sans-serif;
}

.zoom-in-img {
	max-width: 300px;
	height: auto;
	margin: 0 auto;
	padding: 0;
	background: #fff;
	overflow: hidden;
	cursor: pointer;
	margin-bottom: 10px;
}

.zoom-in-img img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: top center;
	object-position: top center;
	transform: scale(1);
}

.zoom-in-img:hover img {
	transform: scale(1.1);
	transition: .2s ease-in-out;
}

.main-works-text {
	margin-bottom: 80px;
}

/* 制作事例へのボタン専用CSS*/
.main-works>div>.btn-wrap {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

/* ×の文字調整*/
.hang {
	font-size: 1.5em;
	display: inline;
	padding: 0 5px;
}

/* メアド*/
.mail {
	font-size: 1.5em;
	;
}

/* works style　制作事例のページに関わるCSS
--------------------------------------------*/

/*Tabのレイアウト------ */

/*tabの形状*/
.tab {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.tab li a {
	display: block;
	text-align: center;
	border-bottom: solid 4px #ddd;
	padding: 0 16px;
	color: #aaa;
	font-size: 16px;
	letter-spacing: 0.02em;
	font-weight: 600;
	text-decoration: none;
}

/*liにactiveクラスがついた時の形状*/
.tab li.active a {
	border-bottom: solid 4px #0b4f49;
	color: #0b4f49;
}

/*エリアの表示非表示と形状*/
.area {
	display: none;
	/*はじめは非表示*/
	opacity: 0;
	/*透過0*/
	padding: 32px 0;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
	display: block;
	/*表示*/
	-webkit-animation-name: displayAnime;
	animation-name: displayAnime;
	/*ふわっと表示させるためのアニメーション*/
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

@-webkit-keyframes displayAnime {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes displayAnime {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/*1カテゴリ全体の要素*/
.works {
	border-bottom: 2px solid #0b4f49;
	margin-bottom: 48px;
}

.works h3 {
	text-align: center;
	font-weight: 600;
}

.works h4 {
	font-size: 16px;
}

.works-grid,
.works-grid-s,
.works-grid-2,
.works-grid-3 {
	display: grid;
	gap: 8px;
	margin: 0 auto 32px;
}

/*スマホだと１枚ずつ並ぶ*/
.works-grid {
	grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
}

/*スマホだと2枚ずつ並ぶ*/
.works-grid-s {
	grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
}

/*スマホだと１枚ずつ２分割*/
.works-grid-2 {
	grid-template-columns: repeat(1, 1fr);
}

/*スマホだと2枚ずつ並ぶ*/
.works-grid-3 {
	grid-template-columns: repeat(1, 1fr);
}

.works-grid-2>div,
.works-grid-3>div {
	padding: 36px;
}

.works img {
	border: 1px solid #ddd;
}

.book {
	display: block;
	margin: 0 auto;
	margin-top: 32px;
	width: 40%;
}

.book:hover {
	opacity: 0.8;
}

.works table {
	border-collapse: collapse;
	width: 80%;
	margin: 10px auto 30px;
}

.works th {
	text-align: left;
	width: 100%;
	display: block;
	padding: 10px 0 0 20px;
}

.works td {
	width: 100%;
	display: block;
	text-align: right;
	padding: 0;
	border-bottom: 1px solid #0b4f49;
}


/* about style　自己紹介のページに関わるCSS
--------------------------------------------*/

/* 年表 */

.history dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.history dl dt {
	text-align: right;
	width: 5em;
	padding: 0.5em 0.8em 0.5em 0;
	position: relative;
	border-right: 2px solid #ccc;
}

.history dl dt::after {
	content: '●';
	position: absolute;
	right: -0.6em;
	top: 3px;
	font-size: 22px;
	color: #0b4f49;
}
.history--point dl dt {
	text-align: right;
	width: 5em;
	padding: 0.5em 0.8em 0.5em 0;
	position: relative;
	border: 1px solid #000;
	border-right: 2px solid #ccc;
}
.history--point dl dt::after {
	content: '●';
	position: absolute;
	right: -0.6em;
	top: 3px;
	font-size: 22px;
	color: #df3082 !important;
}

.history dl dd {
	width: calc(100% - 5em);
	padding: 0.5em 1.0em 2.0em;
}

.history dl dd h2 {
	text-align: left;
	font-size: 16px;
	font-weight: bold;
	margin: 0 0 20px;
	letter-spacing: 0.05em;
}

.history dl dd h2 span {
	text-align: center;
	font-size: 0.9em;
	font-weight: bold;
	margin: -10px 0 10px;
	letter-spacing: 0.1em;
	background: #0b4f49;
	color: #fff;
	border-radius: 20px;
	padding: 10px;
	display: block;
	margin-right: 10px;
	max-width: 200px;
}


.point {
	color: #df3082;
	font-weight: bold;
}

.point span {
	background: #df3082 !important;
}

.box-gray {
	margin: 2em 0;
	padding: 20px;
	background: #e0e1e1;
	max-width: 660px;
}

/* スキルの内容全体を囲うdiv */

.grid-wrap {
	display: grid;
	gap: 30px;
	margin: 20px 0;
}


/* スキルの情報 */
.skill-info {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	font-size: 16px;
	line-height: 1.5;
}

.skill-img {
	width: auto;
	height: 40px;
}

.skill-name {
	margin-bottom: 0;
	font-family: 'Josefin Sans', 'Noto Sans JP', '游ゴシック', YuGothic, sans-serif;

}

/* スキルの熟練度（パーセンテージ） */
.skill-percentage {
	opacity: 0;
	/* 初期状態では透明に */
	transition: opacity 0.6s;
	margin-bottom: 0;
	font-family: 'Josefin Sans', 'Noto Sans JP', '游ゴシック', YuGothic, sans-serif;
	font-size: 18px;
}

/* スキルバーの親要素 */
.skill-bar-container {
	position: relative;
	width: 100%;
	margin: 10px 0;
	height: 30px;
	/* スキルバーの高さ */
	background: #fff;
	border: 3px solid #0b4f49;
	border-radius: 15px;
	overflow: hidden;
}

/* スキルバー本体 */
.skill-bar {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	/* 初期状態では0 */
	background-color: #0b4f49;
	/* スキルバーの色 */
	transition: width 3s cubic-bezier(0.22, 1, 0.36, 1);
	/* スキルバーが伸びる速度を調整 */
}

.message-wrapper {
	margin: 0 auto;
	padding: 0 30px;
}

.message-wrapper img {
	margin: 0 auto;
}

.message-wrapper p::first-letter {
	font-size: 1.2em;
	font-weight: bold;
}

.message-wrapper p+p {
	line-height: 1.8;
	margin-bottom: 20px;
}



/* フォー―ム用のCSS
--------------------------------------------*/

.label01 {
	display: inline-block;
	padding: 0.2rem 2rem;
	margin: 0.5rem;
	background: #555;
	border-radius: 10px;
	color: #fff;
	font-weight: bold;
}


summary {
	list-style: none;
	position: relative;
	margin-bottom: 10px;
	padding: 20px 70px 20px 30px;
	cursor: pointer;
	background-color: #d8be39;
}

summary::-webkit-details-marker {
	display: none;
}

summary:hover,
details[open] summary {
	background-color: #bc9e04;
}

summary::after {
	content: '+';
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	transition: transform 0.5s;
	font-size: 30px;
}

details[open] summary::after {
	transform: translateY(-50%) rotate(45deg);
}

.answer {
	padding: 20px 30px;
}

details[open] .answer {
	-webkit-animation: fadein 0.5s ease;
	animation: fadein 0.5s ease;
}

@-webkit-keyframes fadein {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadein {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* フォー―ム用のテーブルのレイアウト-----*/
table.formTable {
	width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
}

table.formTable td,
table.formTable th {
	border: 1px solid #ccc;
	padding: 10px;
	width: auto;
	display: block;
}

table.formTable th {
	font-weight: normal;
	background: #efefef;
	text-align: left;
	margin-top: 5px;
	border-bottom: 0;
}

/* フォームの項目のデザイン-----*/

form input[type="text"] {
	display: block;
	height: 2.4em;
	width: 100%;
	padding: 0 16px;
	border-radius: 4px;
	border: none;
	box-shadow: 0 0 0 1px #ccc inset;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

form textarea {
	display: block;
	height: 200px;
	width: 100%;
	padding: 10px 16px;
	border-radius: 4px;
	border: none;
	box-shadow: 0 0 0 1px #ccc inset;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	resize: vertical;
}

form input[type="text"]:focus,
form textarea:focus {
	outline: 0;
	box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}

.m-form-select {
	position: relative;
}

.m-form-select:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 12px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	transform: rotate(135deg);
	pointer-events: none;
}

.m-form-select select {
	height: 2.4em;
	width: 100%;
	padding: 0 8px;
	border-radius: 4px;
	border: none;
	box-shadow: 0 0 0 1px #ccc inset;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
}

.m-form-select select::-ms-expand {
	display: none;
}

.m-form-select select:focus {
	outline: 0;
	box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}


.m-form-checkbox input {
	position: absolute;
	white-space: nowrap;
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: 0;
	padding: 0;
	clip: rect(0 0 0 0);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	margin: -1px;
}

.m-form-checkbox-name {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	color: #666;
	position: relative;
}

.m-form-checkbox-name:before {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-right: 6px;
	flex-shrink: 0;
}

.m-form-checkbox input:checked+.m-form-checkbox-name:before {
	border: 1px solid rgb(33, 150, 243);
	background-color: rgb(33, 150, 243);
}

.m-form-checkbox input:checked+.m-form-checkbox-name:after {
	content: "";
	position: absolute;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	left: 0.3em;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 0.4em;
	height: 0.6em;
	transform: translateY(-2px) rotate(45deg);
}

.m-form-checkbox input:checked+.m-form-checkbox-name {
	color: rgb(33, 150, 243);
}

.m-form-checkbox input:focus-visible+.m-form-checkbox-name .m-form-checkbox-text {
	background: linear-gradient(transparent 90%, rgba(33, 150, 243, 0.3) 90%);
}

.m-form-checkbox input.focus-visible+.m-form-checkbox-name .m-form-checkbox-text {
	background: linear-gradient(transparent 90%, rgba(33, 150, 243, 0.3) 90%);
}

form input[type="submit"],
form input[type="reset"],
form input[type="button"] {
	display: inline-block;
	width: 30%;
	height: 40px;
	padding: 8px;
	margin: 10px;
	border: none;
	border-radius: 4px;
	background-color: #333;
	color: #fff;
	font-weight: bold;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	border: 2px solid transparent;
}

form input[type="submit"]:hover,
form input[type="reset"]:hover,
form input[type="button"]:hover {
	background-color: #000;
}

form input[type="submit"]:focus,
form input[type="reset"]:focus,
form input[type="button"]:focus {
	outline: 0;
	background-color: #000;
	border: 2px solid rgb(33, 150, 243);
}

/* マップパターン1-----*/
.map-wrap {
	max-width: 100%;
	border: 1px solid #333;
	/* ここに横幅を指定する */
}

/* マップ-----*/

.googlemap {
	position: relative;
	padding-top: 100%;
	height: 0;
	overflow: hidden;
}

.googlemap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* footer style
--------------------------------------------*/
footer {
	background: #FEDFE1;
	;
}

/* Page Topボタン----------*/

#page-top a {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #0b4f49;
	border-radius: 30px;
	width: 60px;
	height: 60px;
	padding-top: 18px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 0.6rem;
	line-height: 0.7rem;
	transition: all 0.3s;
}

#page-top a::before {
	content: "";
	display: block;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	width: 20%;
	height: 20%;
	top: 20%;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
	transform: rotate(-45deg);
}

#page-top a:hover {
	background: #777;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 2;
	/*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove {
	-webkit-animation: UpAnime 0.5s forwards;
	animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes UpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/*　下に下がる動き　*/

#page-top.DownMove {
	-webkit-animation: DownAnime 0.5s forwards;
	animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
	from {
		opacity: 1;
		transform: translateY(0);
	}

	to {
		opacity: 1;
		transform: translateY(100px);
	}
}

@keyframes DownAnime {
	from {
		opacity: 1;
		transform: translateY(0);
	}

	to {
		opacity: 1;
		transform: translateY(100px);
	}
}

/* Page Topボタンここまで----------*/

.footer {
	background: #0b4f49;
}

.copy {
	display: block;
	text-align: center;
	padding: 3px 0;
	font-size: small;
	color: #fff;
}