@charset "utf-8";
/****************************************
		1. 基本設定 
*****************************************/

/*
Copyright (c) 2010, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.com/yui/license.html
version: 3.3.0
build: 3167
　↓YUI3 CSS Reset　ブラウザー固有のスタイルをリセットします↓　*/
body,div,dl,dt,dd,
ul,ol,li,h1,h2,h3,h4,h5,h6,
pre,code,form,fieldset,legend,
input,textarea,p,blockquote,th,td {
	margin:0;
	padding:0;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
body{
	color: #535353;
}
strong{
	text-decoration: none;
	font-weight: normal;
}
/*
Copyright (c) 2010, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.com/yui/license.html
version: 3.3.0
build: 3167
↓YUI3 CSS Fonts　フォントサイズを相対指定する↓*/


/*---↓リンクに対する共通設定↓---*/
*{
	margin:0;
	padding:0;
	line-height:1.5;
	list-style:none;
}
img{
	border:none;
}
a, a:link,/*未訪問のリンクを指定*/
a:visited,/*訪問済みのリンクを指定*/
a:hover,/*マウスオーバーした時のリンク部分を指定*/
a:active,/*クリック時のリンク部分を指定*/
a{
	text-decoration:none;
}
body{
	overflow-x:hidden;
}
.wf-sawarabimincho { font-family: "Sawarabi Mincho"; }
/* clearfix
----------------------------------------------------*/
.clearfix{ /zoom: 1; }
.clearfix:after{ content: ''; display: block; clear: both; }
/* box-sizing
----------------------------------------------------*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
/*送信ボタン*/
input[type="submit"] {
  -webkit-appearance: none;
}
input[type="reset"] {
  -webkit-appearance: none;
}
/*----------------------------------------------------

	ページ設定

-------------------------------------------------------*/
*{
	--main_color: #0aadfd;
	--sub_color: #b6e6fe;
	--accent_color: #7ac501;
}
body{
	font-family: 'Zen Maru Gothic', sans-serif;
	width: 100%;
}
header{
    position: fixed;
	top: 0;
	left: 0;
    width: 100vw;
	z-index: 9999;
}
header > div{
	display: flex;
    position: absolute;
    z-index: 99;
    width: 100%;
    justify-content: space-between;
	background: var(--main_color);
}
.nav{
	border-radius: 0 0 0px 10px;
	padding: 25px 20px 20px;
	z-index: 99;
	width: fit-content;
	font-size: 85%;
}
.nav ul{
	display: flex;
	justify-content: space-around;
	font-size: 125%;
}
.nav ul li{
	padding: 0 0 2px 3px;
	transition: 0.5s;
	cursor: pointer;
}
.nav ul li:hover:not(:last-child){
	background: #fff;
	border-radius: 30px;
}
.nav ul li a{
	color: #fff;
	padding: 0 10px;
	letter-spacing: 3px;
	color: #fff;
}
.nav ul li:hover a{
	color: var(--main_color);
}
.nav ul li p{
	color: #fff;
	padding: 0 10px;
	letter-spacing: 1px;
}
header h1{
	display: block;
	margin: 10px 0 0 30px;
	z-index: 99;
}
header h1 a{
	color: #fff;
}
header h1 p:first-of-type{
	font-size: 40%;
}
header h1 p:last-of-type{
	font-size: 130%;
	line-height: 1;
}
.nav_under{
	position: absolute;
	top: 50px;
	width: 100vw;
}
.topicpath_box a,
.topicpath_box p{
	color: var(--main_color);
}

footer{
	background: var(--main_color);
}
footer > div{
	display: flex;
    justify-content: center;
	align-items: center;
	margin: 50px 0 0;
	padding: 25px 0 7.5px;
}
footer > div >div{
	width: 32%;
	color: #fff;
}
footer .footer_left{
	display: flex;
    justify-content: flex-end;
}
footer .footer_left > div{
	width: fit-content;
}
footer table{
	margin: 0 0 20px;
}
footer table tr:nth-child(2){
	border-bottom: 1px dashed #fff;
}
footer table tr:nth-child(2) td{
	padding-bottom: 2px;
}
footer table td{
	padding: 0px 5px;
	text-align: center;
}
footer .titlebox{
	color: var(--main_color);
	background: #fff;
	width: 300px;
	height: 300px;
	margin: 1px 60px 0;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
}
footer .title{
	font-size: 300%;
	line-height: 1;
	margin-bottom: 10px;
}
footer .address{
	font-size: 90%;
}
footer .accsess .text_title{
	font-size: 90%;
}
footer .accsess .text{
	font-size: 80%;
}
footer .linktree{
	display: flex;
	justify-content: center;
    align-items: center;
	padding: 0 0 5px;
	font-size: 80%;
	color: #fff;
}
footer .linktree a{
	color: #fff;
	padding: 0 5px 1px;
}
footer .linktree li:hover a{
	background: #fff;
	color: var(--main_color);
	border-radius: 50px;
}
footer .copy{
	background: #fff;
	color: var(--main_color);
	text-align: center;
	letter-spacing: 2px;
	padding: 2px 0 5px;
	font-size: 77%;
}