﻿@charset "UTF-8";

@import url('//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;600;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
/* Google font Icon */
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");


/*========================
基本スタイル
========================*/
body {
  font-family: "Roboto", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1;
  color: #333;
  -webkit-text-size-adjust: 100%;
  font-size: 17px;
  letter-spacing: 0.05em;
  font-weight: normal;
  background-color:#FFF;
  overflow-x: hidden;
  width:100%;
  height:100%;
  margin: 0px;
  padding: 0px;
}
@media screen and (max-width: 640px) {
body {
  font-size: 16px;
  }
}

img {
  max-width: 100%;
  height: auto;
  width /***/:auto;
  vertical-align:middle;
  border:none;
  -ms-interpolation-mode: bicubic;
}
a:hover img{
  opacity: 0.8;
  filter: alpha(opacity=80);
  transition:all 0.3s ease;
}
/*画像リンクhover無効*/
a.nohover:hover img {
  opacity: 1.0;
  filter:progid:DXImageTransform.Microsoft.Alpha(Style=0,Opacity=100,FinishOpacity=100);
}
a {
  color:#111;
  text-decoration:underline;
  font-weight:bold;
}
a:hover,
a:active {
  text-decoration:none;
}

/*-------------------------
RESET
--------------------------*/
html, body, div, span, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,abbr, address, cite, code,del, dfn, em, img, ins, kbd, q, samp,small, strong, sub, sup, var,b, i,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, figcaption, figure,footer, header, hgroup, menu, nav, section, summary,time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display:block;
}
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
ol {
  list-style: none;
  counter-reset: list-counter;
  padding: 0;
  margin: 0;
}

*, *: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;
}


/*========================
パーツ
========================*/
#wrapper {
  width:100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
}
footer {
  width: 100%;
  padding: 32px 18px;
  margin: 0 auto;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 0.8em;
  font-weight: 400;
  color: #FFF;
  letter-spacing: 0.03em;
}
footer a{
  font-weight: normal;
  text-decoration: none;
  color: #FFF;
}
@media screen and (max-width: 480px) {
footer {
  padding: 24px 12px;
  font-size: 0.7em;
  }
}

/*-------------------------
余白
--------------------------*/
/*html記述 <div class="spacer"><!----></div>*/
.spacer {
  clear: both;
  width: auto;
  height: 48px;
}
.sectionspace {
  clear: both;
  width: auto;
  height: 64px;
}
.period {
  clear: both;
  width: auto;
  height: 18px;
}
.spacer15 {
  clear: both;
  width: auto;
  height: 15px;
}
@media(max-width:640px){
.spacer {
  height: 32px;
  }
.sectionspace {
  height: 48px;
  }
.period {
  height: 15px;
  }
}