@charset "utf-8";

/*==============================================================================
  
 【common.css】- 共通/テーマ別スタイルシート
  
  テーマに依存しないスタイルとファーストビューに必要なスタイルを記述しています。
  また、それぞれの項目ではスタイル上書きによる無駄な記述をさけるため、
  メディアクエリで完全にスタイルを分けて記述しています。

  <目次>
   # Reset CSS
   # Text
   # Link
   # Image
   # List
   # Table
   # From
   # Space
   # Other
   # General
   # Header
	 # Footer
   # fixed-menu
   # Main column
  
==============================================================================*/


/*--------------------------------------
  # Reset CSS
--------------------------------------*/

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;vertical-align:baseline;background:transparent;}body {line-height:1;-webkit-text-size-adjust:100%;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {display:block;}nav ul {list-style:none;}blockquote,q {quotes:none;}blockquote:before,blockquote:after,q:before,q:after {content:'';content:none;}a {margin:0;padding:0;text-decoration:none;vertical-align:baseline;background:transparent;cursor:text;}/* change colours to suit your needs */ins {background-color:#ff9;color:#000;text-decoration:none;}/* change colours to suit your needs */mark {background-color:#ff9;color:#000; font-style:italic;font-weight:bold;}del {text-decoration: line-through;}abbr[title],dfn[title] {border-bottom:1px dotted;cursor:help;}table {border-collapse:collapse;border-spacing:0;}/* change border colour to suit your needs */hr {display:block;height:1px;border:0; border-top:1px solid #cccccc;margin:1.5em 0;padding:0;}input,select {-webkit-appearance: none;appearance: none;vertical-align:middle;}select::-ms-expand{display: none;}ul,ol,li {list-style-type: none;}input::-ms-clear {visibility:hidden}input::-ms-reveal {visibility:hidden}h1,h2,h3,h4,h5,h6 {font-weight: normal;}*{box-sizing: border-box;margin: 0;padding: 0;font-size: 100%;font-style: normal;border: none;outline: none;}

/*--------------------------------------
  # Text
--------------------------------------*/

p {
  margin-bottom: 2rem;
}

.indent {
	padding-left: 1em;
	text-indent: -1em;
}

/* align
--------------------*/

.alignright {
  text-align: right;
}
.alignleft {
  text-align: left;
}
.aligncenter {
  text-align: center;
}

@media screen and (max-width:736px) {
.sp-alignright { text-align: right !important;}
.sp-alignleft { text-align: left !important;}
.sp-aligncenter { text-align: center !important;}
}

/* size
--------------------*/

.fs-small {
  font-size: 80% !important;
}
.fs-large {
  font-size: 112% !important;
}
.fs-big {
  font-size: 125% !important;
}
.fs-bigger {
  font-size: 138% !important;
}

/* color
--------------------*/

.fc-red { color: #F00;}
.fc-yellow { color: #ffe50c;}
.fc-white { color: #fff;}

.flashing {
	animation:blink 0.8s ease-in-out infinite alternate;
}
@keyframes blink{
	0% {opacity:0;}
	70% {opacity:1;}
}

/*--------------------------------------
  # Link
--------------------------------------*/

a:not([href^="tel:"]),
body.m a[href^="tel:"] {
	color: inherit;
  text-decoration: underline;
  cursor: pointer;
}
body.dv a:hover {
  text-decoration: none;
}

@media screen and (min-width:737px) {
	a[href^="tel:"] {
		color: inherit;
	}
}

/*--------------------------------------
  # Image
--------------------------------------*/

img {
  max-width: 100%;
  height: auto;
	vertical-align: bottom;
}

/*--------------------------------------
  # List
--------------------------------------*/

ul.list-mark,ol.list-mark {
  margin-bottom: 1.5em;
}
ul.list-mark > li {
  position: relative;
  padding-left: 1em;
}
ul.list-mark > li:not(:last-child),ol.list-mark > li:not(:last-child) {
  margin-bottom: 0.5em;
}
ul.list-mark > li:before {
  content: '';
  position: absolute;
  top: 0.8em;
  left: 0.35em;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: #000;
  border-radius: 100%;
}
ol.list-mark > li {
  list-style: decimal;
  margin-left: 1.5em;
}

/*--------------------------------------
  # Form
--------------------------------------*/

form input:not([type="radio"]):not([type="checkbox"])):not([type="submit"]):not([type="button"]),form select,form textarea {
  display: inline-block;
  padding: 8px;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  border: 1px solid #000;
  border-radius: 3px;
  vertical-align: top;
}
form select {
  padding-right: 25px;
}
form textarea {
  display: block;
  width: calc(100% - 4px);
  min-width: calc(100% - 4px);
  max-width: calc(100% - 4px);
  min-height: 100px;
}
form input[type="radio"],form input[type="checkbox"] {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: #FFF;
  border: 1px solid #CCC;
  vertical-align: baseline;
}
form input[type="radio"] {
  position: relative;
  border-radius: 100px;
}
form input[type="radio"]:checked {
}
form input[type="radio"]:checked:after{
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  width: 9px;
  height: 9px;
  background: #ea1c24;
  border-radius: 100px;
}
form input[type="checkbox"] {
  position:relative;
  border-radius: 3px;
}
form input[type="checkbox"]:checked {
}
form input[type="checkbox"]:checked:after{
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 3px;
  width: 5px;
  height: 10px;
  transform: rotate(40deg);
  border-bottom: 3px solid #f64077;
  border-right: 3px solid #f64077;
}
form input[type="submit"],form input[type="button"] {
  display: inline-block;
  height: 2.5em;
  margin: 0 8px;
  padding: 0 40px;
  background: #666;
  border-radius: 3px;
  vertical-align: top;
  cursor: pointer;
}

/*--------------------------------------
  # Space
--------------------------------------*/

.mt0{margin-top:0px!important;}.mt5{margin-top:5px!important;}.mt10{margin-top:10px!important;}.mt15{margin-top:15px!important;}.mt20{margin-top:20px!important;}.mt25{margin-top:25px!important;}.mt30{margin-top:30px!important;}.mt35{margin-top:35px!important;}.mt40{margin-top:40px!important;}.mt45{margin-top:45px!important;}.mt50{margin-top:50px!important;}.mt55{margin-top:55px!important;}.mt60{margin-top:60px!important;}.mt65{margin-top:65px!important;}.mt70{margin-top:70px!important;}.mt75{margin-top:75px!important;}.mt80{margin-top:80px!important;}.mt85{margin-top:85px!important;}.mt90{margin-top:90px!important;}.mt95{margin-top:95px!important;}.mt100{margin-top:100px!important;}
.mr0{margin-right:0px!important;}.mr5{margin-right:5px!important;}.mr10{margin-right:10px!important;}.mr15{margin-right:15px!important;}.mr20{margin-right:20px!important;}.mr25{margin-right:25px!important;}.mr30{margin-right:30px!important;}.mr35{margin-right:35px!important;}.mr40{margin-right:40px!important;}.mr45{margin-right:45px!important;}.mr50{margin-right:50px!important;}.mr55{margin-right:55px!important;}.mr60{margin-right:60px!important;}.mr65{margin-right:65px!important;}.mr70{margin-right:70px!important;}.mr75{margin-right:75px!important;}.mr80{margin-right:80px!important;}.mr85{margin-right:85px!important;}.mr90{margin-right:90px!important;}.mr95{margin-right:95px!important;}.mr100{margin-right:100px!important;}
.mb0{margin-bottom:0px!important;}.mb5{margin-bottom:5px!important;}.mb10{margin-bottom:10px!important;}.mb15{margin-bottom:15px!important;}.mb20{margin-bottom:20px!important;}.mb25{margin-bottom:25px!important;}.mb30{margin-bottom:30px!important;}.mb35{margin-bottom:35px!important;}.mb40{margin-bottom:40px!important;}.mb45{margin-bottom:45px!important;}.mb50{margin-bottom:50px!important;}.mb55{margin-bottom:55px!important;}.mb60{margin-bottom:60px!important;}.mb65{margin-bottom:65px!important;}.mb70{margin-bottom:70px!important;}.mb75{margin-bottom:75px!important;}.mb80{margin-bottom:80px!important;}.mb85{margin-bottom:85px!important;}.mb90{margin-bottom:90px!important;}.mb95{margin-bottom:95px!important;}.mb100{margin-bottom:100px!important;}
.ml0{margin-left:0px!important;}.ml5{margin-left:5px!important;}.ml10{margin-left:10px!important;}.ml15{margin-left:15px!important;}.ml20{margin-left:20px!important;}.ml25{margin-left:25px!important;}.ml30{margin-left:30px!important;}.ml35{margin-left:35px!important;}.ml40{margin-left:40px!important;}.ml45{margin-left:45px!important;}.ml50{margin-left:50px!important;}.ml55{margin-left:55px!important;}.ml60{margin-left:60px!important;}.ml65{margin-left:65px!important;}.ml70{margin-left:70px!important;}.ml75{margin-left:75px!important;}.ml80{margin-left:80px!important;}.ml85{margin-left:85px!important;}.ml90{margin-left:90px!important;}.ml95{margin-left:95px!important;}.ml100{margin-left:100px!important;}
.pt0{padding-top:0px!important;}.pt5{padding-top:5px!important;}.pt10{padding-top:10px!important;}.pt15{padding-top:15px!important;}.pt20{padding-top:20px!important;}.pt25{padding-top:25px!important;}.pt30{padding-top:30px!important;}.pt35{padding-top:35px!important;}.pt40{padding-top:40px!important;}.pt45{padding-top:45px!important;}.pt50{padding-top:50px!important;}.pt55{padding-top:55px!important;}.pt60{padding-top:60px!important;}.pt65{padding-top:65px!important;}.pt70{padding-top:70px!important;}.pt75{padding-top:75px!important;}.pt80{padding-top:80px!important;}.pt85{padding-top:85px!important;}.pt90{padding-top:90px!important;}.pt95{padding-top:95px!important;}.pt100{padding-top:100px!important;}
.pr0{padding-right:0px!important;}.pr5{padding-right:5px!important;}.pr10{padding-right:10px!important;}.pr15{padding-right:15px!important;}.pr20{padding-right:20px!important;}.pr25{padding-right:25px!important;}.pr30{padding-right:30px!important;}.pr35{padding-right:35px!important;}.pr40{padding-right:40px!important;}.pr45{padding-right:45px!important;}.pr50{padding-right:50px!important;}.pr55{padding-right:55px!important;}.pr60{padding-right:60px!important;}.pr65{padding-right:65px!important;}.pr70{padding-right:70px!important;}.pr75{padding-right:75px!important;}.pr80{padding-right:80px!important;}.pr85{padding-right:85px!important;}.pr90{padding-right:90px!important;}.pr95{padding-right:95px!important;}.pr100{padding-right:100px!important;}
.pb0{padding-bottom:0px!important;}.pb5{padding-bottom:5px!important;}.pb10{padding-bottom:10px!important;}.pb15{padding-bottom:15px!important;}.pb20{padding-bottom:20px!important;}.pb25{padding-bottom:25px!important;}.pb30{padding-bottom:30px!important;}.pb35{padding-bottom:35px!important;}.pb40{padding-bottom:40px!important;}.pb45{padding-bottom:45px!important;}.pb50{padding-bottom:50px!important;}.pb55{padding-bottom:55px!important;}.pb60{padding-bottom:60px!important;}.pb65{padding-bottom:65px!important;}.pb70{padding-bottom:70px!important;}.pb75{padding-bottom:75px!important;}.pb80{padding-bottom:80px!important;}.pb85{padding-bottom:85px!important;}.pb90{padding-bottom:90px!important;}.pb95{padding-bottom:95px!important;}.pb100{padding-bottom:100px!important;}
.pl0{padding-left:0px!important;}.pl5{padding-left:5px!important;}.pl10{padding-left:10px!important;}.pl15{padding-left:15px!important;}.pl20{padding-left:20px!important;}.pl25{padding-left:25px!important;}.pl30{padding-left:30px!important;}.pl35{padding-left:35px!important;}.pl40{padding-left:40px!important;}.pl45{padding-left:45px!important;}.pl50{padding-left:50px!important;}.pl55{padding-left:55px!important;}.pl60{padding-left:60px!important;}.pl65{padding-left:65px!important;}.pl70{padding-left:70px!important;}.pl75{padding-left:75px!important;}.pl80{padding-left:80px!important;}.pl85{padding-left:85px!important;}.pl90{padding-left:90px!important;}.pl95{padding-left:95px!important;}.pl100{padding-left:100px!important;}


/*--------------------------------------
  # Other
--------------------------------------*/

.clear {
  clear: both;
}

iframe {
  display: block;
}

@media screen and (min-width:737px) {

.hide-d {
  display: none !important;
}

}

@media screen and (max-width:736px) {

.hide-m {
  display: none !important;
}

}

/*--------------------------------------
  # General
--------------------------------------*/

html {
  font-size: 62.5%;
  overflow-y: scroll;
  word-break: break-all;
  line-break:strict;
}
@-moz-document url-prefix() { /* FireFox */
  html {
    word-break: normal;
    word-wrap: break-word;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 0) { /* safari */
  _::-webkit-full-page-media, _:future, :root #container {
    word-break: normal !important;
    word-wrap: break-word !important;
  }
}
body {
  color: #181818;
  font-size: 1.8rem;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  text-align: left;
}

@media screen and (max-width:736px) {

html {
  font-size: 55%;
}

}

/*--------------------------------------
  # Header
--------------------------------------*/

header#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  clear: both;
  background: #FFF;
	box-shadow: 0 0 4px rgba(0,0,0,0.3);
  z-index: 1000;
}
header#header div.header-wrapper {
  clear: both;
	max-width: 750px;
	margin: 0 auto;
	overflow: hidden;
}
header#header div.site-title {
  float: left;
  clear: left;
  width: 290px;
}
header#header div.site-title a {
  display: block;
  max-width: 290px;
  height: 0;
	margin: 10px 0 0;
  padding-top: 58px;
  background: url(../img/site-title.svg?ver=20250630) no-repeat 0 0;
  background-size: 100%;
  overflow: hidden;
	transition: 0.2s;
}
body.dv header#header div.site-title a:hover {
  opacity: 0.7;
}
header#header .supplement-nav {
	display: flex;
	justify-content: flex-end;
}
header#header .supplement-nav li {
	width: 216px;
}
header#header .supplement-nav li a,
header#header .supplement-nav li span {
	display: block;
	height: 100%;
	padding: 10px 0;
	text-align: center;
	line-height: 0;
	transition: 0.2s;
}
header#header .supplement-nav li.tel a,
header#header .supplement-nav li.tel span {
	background: #f5911f;
}
header#header .supplement-nav li.mail a {
	background: #ea1c24;
}
body.dv header#header .supplement-nav li a:hover {
	filter: brightness(1.2);
}
header#header .supplement-nav li.wide {
	width: 300px;
}

@media screen and (max-width:736px) {

header#header div.header-wrapper {
	max-width: 100%;
}
header#header div.site-title {
  width: 32%;
}
header#header div.site-title a {
	margin: 7px 5px;
  padding-top: 28%;
	background-position: 0 center;
}
header#header .supplement-nav li {
	width: auto;
}
header#header .supplement-nav li a,
header#header .supplement-nav li span {
	height: 100%;
	padding: 6px 5px;
}
header#header .supplement-nav li.wide {
	width: 80%;
}
header#header .supplement-nav li.wide a {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 16%;
	overflow: hidden;
}
header#header .supplement-nav li.wide a img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	height: 90%;
	transform: translate(-50%, -50%);
}
}

/*--------------------------------------
  # Footer
--------------------------------------*/

footer#footer {
  clear: both;
	max-width: 750px;
	margin: 0 auto;
	padding-bottom: 120px;
}
footer#footer nav#sitemap-nav {
	margin: 30px 0;
	overflow: hidden;
}
footer#footer nav#sitemap-nav > ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}
footer#footer nav#sitemap-nav > ul > li {
	flex: 1;
	padding: 0 3px 3px 0;
}
footer#footer nav#sitemap-nav a {
	position: relative;
  display: flex;
	align-items: center;
	height: 100%;
  padding: 18px 60px 15px 20px;
  color: #000;
  font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.4;
  text-decoration: none;
	border: 2px solid #000;
	box-shadow: 3px 3px 0 #000;
  transition: 0.2s;
}
footer#footer nav#sitemap-nav a:before {
  content: '';
	position: absolute;
	top: 50%;
	right: 15px;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	background: #000;
}
footer#footer nav#sitemap-nav a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 27px;
	width: 8px;
	height: 8px;
	margin-top: -6px;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	transform: rotate(45deg);
}
body.dv footer#footer nav#sitemap-nav a:hover {
	background: #ffe50c;
	box-shadow: none;
	transform: translate(3px, 3px);
}
footer#footer p.copyright {
  margin: 0;
  color: rgba(0,0,0,0.6);
  font-size: 1.4rem;
  text-align: center;
  line-height: 40px;
}
div#pagetop {
  position: fixed;
  right: 0;
  bottom: 140px;
  z-index: 10;
  opacity: 0;
  transition: 0.3s;
}
div#pagetop.show {
  opacity: 1;
}
div#pagetop a {
  display: block;
  width: 40px;
  height: 0;
  padding-top: 60px;
  background: #000;
  overflow: hidden;
}
div#pagetop a:before {
  content: '';
  position: fixed;
  right: 12px;
  bottom: 160px;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #FFF;
  border-left: 2px solid #FFF;
  transform: rotate(45deg);
  transition: 0.1s;
}
body.dv div#pagetop a:hover,
body.dv div#pagetop a:hover:before {
  opacity: 0.8;
}

@media screen and (max-width:736px) {
footer#footer {
	max-width: 100%;
	margin: 0 10px;
	padding-bottom: 60px;
}
footer#footer nav#sitemap-nav > ul {
	width: 90%;
	margin: 0 auto;
}
footer#footer nav#sitemap-nav > ul > li {
	flex: none;
	width: 100%;
}
footer#footer nav#sitemap-nav a {
  font-size: 2.0rem;
}
footer#footer nav#sitemap-nav a:before {
	right: 10px;
}
footer#footer nav#sitemap-nav a:after {
  right: 22px;
}
}

/*--------------------------------------
  # fixed-menu
--------------------------------------*/

nav#fixed-menu {
  position: fixed;
  left: 50%;
  bottom: 0;
  width: 750px;
	margin-left: -375px;
  z-index: 100;
}
nav#fixed-menu ul {
	display: flex;
}
nav#fixed-menu ul li {
	flex: 1;
	text-align: center;
}
nav#fixed-menu ul li a,
nav#fixed-menu ul li span {
  display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 5px;
	line-height: 0;
}
nav#fixed-menu ul li.tel a,
nav#fixed-menu ul li.tel span {
	background: #f5911f;
}
nav#fixed-menu ul li.mail a {
	background: #ea1c24;
}
body.dv nav#fixed-menu ul li a:hover {
	filter: brightness(1.2);
}
nav#fixed-menu ul li.wide {
  display: block;
  width: 100%;
}
@media screen and (max-width:736px) {
nav#fixed-menu {
  left: 0;
  width: 100%;
	margin-left: 0;
}
nav#fixed-menu ul li.wide a img {
	width: 60%;
}
}

/*--------------------------------------
  # Main column
--------------------------------------*/

@media print, screen and (min-width:737px) {

/* main
--------------------*/

div#main {
  position: relative;
  clear: both;
	margin: 79px 0 0;
}

/* breadcrumbs
--------------------*/

div#main nav#breadcrumbs {
  clear: both;
	max-width: 750px;
	margin: 0 auto;
	padding: 10px 0 20px;
  font-size: 1.2rem;
  text-align: left;
  letter-spacing: normal;
  line-height: 1.2;
}
div#main nav#breadcrumbs li {
  display: inline-block;
  vertical-align: top;
}
div#main nav#breadcrumbs li a,
div#main nav#breadcrumbs li > span {
  position: relative;
  display: block;
  padding: 0 0 0 20px;
}
div#main nav#breadcrumbs li a:before,
div#main nav#breadcrumbs li > span:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 10px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-left: 4px solid #666;
  border-bottom: 4px solid transparent;
}
div#main nav#breadcrumbs li a:after,
div#main nav#breadcrumbs li > span:after {
  content: '';
  position: absolute;
  top: 3px;
  left: 8px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-left: 5px solid #FFF;
  border-bottom: 4px solid transparent;
}
div#main nav#breadcrumbs li:first-child a {
  padding: 0;
}
div#main nav#breadcrumbs li:first-child a:before,
div#main nav#breadcrumbs li:first-child a:after {
  content: normal;
  display: none;
}
div#main nav#breadcrumbs li:last-child a {
  color: #262626;
  text-decoration: none;
}

/* node
--------------------*/

div#main div.node {
  clear: both;
  overflow: hidden;
}
div#main div.node-wrapper {
  clear: both;
	max-width: 750px;
	margin: 0 auto;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
div#main div.node-inner {
  clear: both;
	max-width: 750px;
	margin: 0 auto;
  padding: 20px;
	background: #fff;
  overflow: hidden;
}

/* title
--------------------*/

div#main h2 {
  clear: both;
  margin-bottom: 60px;
  color: #fff;
  font-size: 4.6rem;
	font-weight: bold;
  text-align: center;
  line-height: 1.4;
	text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
div#main h2 span {
  position: relative;
	display: inline-block;
}
div#main h2 span:before {
  content: '';
  position: absolute;
  bottom: 8px;
  left: -5px;
	right: -5px;
  height: 15px;
  background: #fee50c;
	z-index: -1;
}
div#main h3 {
  position: relative;
  margin: 0 0 20px;
	padding: 5px 15px 3px;
	background: #000;
	color: #fff;
  font-size: 2.6rem;
	font-weight: bold;
}
div#main h4 {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
	padding-left: 15px;
  font-size: 2.0rem;
  font-weight: bold;
  vertical-align: top;
}
div#main h4:before {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
	height: 10px;
  background: #fee50c;
}

}

@media screen and (max-width:736px) {

div#main {
  position: relative;
  clear: both;
  overflow: hidden;
}
div#main nav#breadcrumbs {
  display: none;
}

/* node
--------------------*/

div#main .node {
  clear: both;
  overflow: hidden;
}
div#main div.node-wrapper {
  clear: both;
  overflow: hidden;
}
div#main div.node-wrapper-odd {
  margin-bottom: 30px;
}
div#main div.node-inner {
  clear: both;
	padding: 10px 15px;
	background: #fff;
  overflow: hidden;
}

/* title
--------------------*/

div#main h2 {
  position: relative;
  clear: both;
  display: block;
  margin: 30px 0;
  color: #fff;
  font-size: 3.2rem;
	font-weight: bold;
  text-align: center;
  line-height: 1.4;
	text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
div#main h2 span {
  position: relative;
	display: inline-block;
}
div#main h2 span:before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -5px;
	right: -5px;
  height: 10px;
  background: #fee50c;
	z-index: -1;
}
div#main h3 {
  position: relative;
  margin: 0 0 20px;
	padding: 5px 10px;
	background: #000;
	color: #fff;
  font-size: 2.2rem;
	font-weight: bold;
}
div#main h4 {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding-left: 12px;
  font-size: 1.8rem;
  font-weight: bold;
  vertical-align: top;
}
div#main h4:before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
	height: 8px;
  background: #fee50c;
}
}

/*--------------------------------------
  # その他
--------------------------------------*/

div.anchor-btn {
	position: relative;
	text-align: center;
	margin-top: -58px;
}
div.anchor-btn a {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	overflow: hidden;
	transition: 0.2s;
}
div.anchor-btn a:hover {
  filter: brightness(1.2);
	transform: translate(-50%, 3px);
}
div.anchor-btn a.mail {
	top: 290px;
	width: 703px;
	height: 166px;
}
div.anchor-btn a.tel {
	top: 480px;
	width: 694px;
	height: 79px;
}
table.company-table {
	width: 100%;
	margin-bottom: 1em;
	border-top: 2px solid #000;
	border-left: 2px solid #000;
}
table.company-table th,table.company-table td {
	padding: 10px 15px;
	border-right: 2px solid #000;
	border-bottom: 2px solid #000;
}
table.company-table th {
	background: #000;
	color: #fff;
	text-align: center;
	vertical-align: middle;
}
table.company-table tr:not(:last-child) th {
	border-bottom: 2px solid #fff;
}
#close,#close_gw {
	padding: 30px 20px 0;
}
.close-wrapper {
	padding-top: 226px;
	background: url(../img/closed.png) no-repeat center 0;
	background-size: 280px auto;
	text-align: center;
	line-height: 1.8;
}
@media screen and (max-width:736px) {
div.anchor-btn {
	margin-top: -8%;
}
div.anchor-btn a {
	height: auto;
}
div.anchor-btn a.mail {
	top: 30%;
	width: 95%;
}
div.anchor-btn a.tel {
	top: 50%;
	width: 95%;
}
table.company-table th,table.company-table td {
	padding: 10px;
}
.close-wrapper {
	padding-top: 50%;
	background-size: 60% auto;
}
}

/*--------------------------------------
  # Form
--------------------------------------*/

div#main #form {
	background: #ea1c24;
}
div#main .form-wrapper {
	max-width: 750px;
	margin: 0 auto;
	padding: 60px 20px;
}
div#main .form-note {
	margin-bottom: 40px;
	font-size: min(5.4vw, 2.6rem);
	font-weight: bold;
	line-height: 1.4;
	text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
	letter-spacing: 1px;
}
div#main dl.input-block {
  clear: both;
  padding: 15px;
	border-top: 1px solid rgba(0,0,0,0.25);
	overflow: hidden;
}
div#main dl.input-block dt {
  position: relative;
	margin-bottom: 5px;
  font-weight: bold;
}
div#main dl.input-block dt span.required {
	display: inline-block;
	margin-left: 10px;
  padding: 5px 8px 3px;
  color: #ea1c24;
  font-size: 1.4rem;
  background: #fee30d;
	vertical-align: middle;
	line-height: 1.2;
}
div#main dl.input-block dd {
  display: block;
}
div#main dl.input-block dd p {
  margin: 0;
}
div#main div.form_in input[type="text"],
div#main div.form_in input[type="email"],
div#main div.form_in input[type="tel"],
div#main div.form_in select,
div#main div.form_in textarea,
div#main input[type="password"] {
  display: inline-block;
  width: calc(100% - 4px);
  min-height: 38px;
  margin: 2px;
  padding: 5px 10px;
  background: #FFF;
  font-size: 1.8rem;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  border: 1px solid #CCC;
  border-radius: 3px;
  outline: none;
  vertical-align: middle;
  box-sizing: border-box;
}
div#main div.form_in input.short {
  width: 20%;
}
div#main div.form_in input.middle {
  width: 60%;
}
div#main div.form_in label {
  display: inline-block;
  margin: 5px 20px 5px 0;
  vertical-align: top;
}
div#main div.form_in textarea {
  padding: 10px;
  font-size: 1.6rem;
}
div#main .form-btn {
  clear: both;
	padding: 30px 0;
  text-align: center;
  letter-spacing: -.40em;
	border-top: 1px solid rgba(0,0,0,0.25);
}
div#main .form-btn input[type="submit"] {
  position: relative;
  display: inline-block;
  width: 40%;
	height: auto;
  padding: 10px 20px;
	background: linear-gradient(to bottom,  rgba(250,252,201,1) 0%,rgba(69,177,0,1) 100%);
  color: #000;
  font-size: 2.6rem;
  font-weight: bold;
  text-decoration: none;
	text-shadow: 0px -2px 1px #FFF, 2px 0 1px #FFF, 0 2px 1px #FFF, -2px 0 1px #FFF, 2px 2px 1px #FFF, 2px -2px 1px #FFF, -2px 2px 1px #FFF, -2px -2px 1px #FFF;
  vertical-align: top;
  letter-spacing: 2px;
  -webkit-appearance: none;
  border: 2px solid #000;
  border-radius: 100px;
	box-shadow: 3px 3px 0 #000;
  cursor: pointer;
	transition: 0.2s;
}
div#main .form-btn input[type="submit"].mailform_back {
  background: #afafaf;
}
body.dv div#main .form-btn input[type="submit"]:hover {
	box-shadow: none;
	transform: translate(3px, 3px);
}
div#main .info-box {
	display: inline-block;
	margin: 1em 0 0.5em;
	padding: 0 20px 20px;
	background: #ffface;
	text-align: left;
}
div#main .info-box .info-title {
	margin: 0 -20px 20px;
	padding: 5px 10px;
	background: #ffeb3b;
	color: #333;
}

@media screen and (max-width:736px) {
	div#main .form-wrapper {
		max-width: 100%;
		padding-top: 40px;
		padding-bottom: 40px;
	}
  div#main dl.input-block {
    padding: 10px 0;
  }
  div#main dl.input-block dt {
    float: none;
    width: auto;
    margin-bottom: 5px;
    line-height: 1.4;
  }
  div#main dl.input-block dt span.required {
    top: 0;
  }
  div#main dl.input-block dd {
    margin-left: 0;
  }
  div#main dl.input-block dd p {
    margin: 0;
  }
  div#main div.form_in input[type="text"],
  div#main div.form_in input[type="email"],
  div#main div.form_in input[type="tel"],
  div#main div.form_in select,
  div#main div.form_in textarea,
  div#main input[type="password"] {
    font-size: 16px;
  }
  div#main div.form_in input.short {
    width: 40%;
  }
  div#main div.form_in input.middle {
    width: calc(100% - 4px);
  }
  div#main .form-btn {
    margin: 20px 0 0;
  }
  div#main .form-btn input[type="submit"] {
    width: 80%;
		margin: 10px 0;
  }
	div#main .form-btn input[type="submit"].mailform_back {
		width: 50%;
		padding: 8px 10px;
	}
}

/* link
--------------------*/

div#main a.detail-link {
  position: relative;
  display: inline-block;
	width: 40%;
  margin: 0 10px;
  padding: 10px 20px 5px;
	background: linear-gradient(to bottom, rgba(250, 252, 201, 1) 0%, rgba(69, 177, 0, 1) 100%);
	color: #000;
	font-size: 2.6rem;
	font-weight: bold;
  text-decoration: none;
	text-shadow: 0px -2px 1px #FFF, 2px 0 1px #FFF, 0 2px 1px #FFF, -2px 0 1px #FFF, 2px 2px 1px #FFF, 2px -2px 1px #FFF, -2px 2px 1px #FFF, -2px -2px 1px #FFF;
  vertical-align: top;
  border: 2px solid #000;
	border-radius: 100px;
  box-shadow: 3px 3px 0 #000;
  overflow: hidden;
  box-sizing: border-box;
  transition: 0.2s;
}
body.dv div#main a.detail-link:hover {
	box-shadow: none;
	transform: translate(3px, 3px);
}
div#main a.link-icon {
  position: relative;
  padding-left: 18px;
}
div#main a.link-icon:before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  width: 0;
  height: 0;
  border-left: 6px solid #7878ff;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

@media screen and (max-width:736px) {
div#main a.detail-link {
  display: block;
  width: 80%;
  margin: 0 auto 10px;
  padding: 10px 10px 5px;
	font-size: 2.2rem;
}
}