@charset "utf-8";

/*  reset css
-----------------------------------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

/* reset  */
*,*::before,*::after {
    box-sizing: border-box;
}
img {
  display: inline-block;
  max-width: 100%;
}
sup {
  position: relative;
	top: -0.1em; 
	font-size: 70%; 
	vertical-align: top;
}
sub {
  position: relative;
  top: 0.1em;
  font-size: 75.5%;
  vertical-align: bottom;
}
figcaption {
  text-align: center;
}


/* WEBフォント */
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: local('Noto Sans Japanese Regular'), local('NotoSansJapanese-Regular'),
       url('https://www.torus-i.co.jp/wp/wp-content/themes/torus/fonts/noto-sans-jp-v24-japanese_latin-regular.woff2') format('woff2');
}

/*
=======================================
  太陽光LP
  Mobile First Query
  @media screen and (min-width: 481px) { } スマホ横以上タブレットまで
  @media screen and (min-width: 769px) { } PC画面
=======================================
*/

/* ===========================================================================
   Basic
========================================================================== */

body {
	margin: 0;
	padding: 0;
	color: #282828;
	line-height: 1.4;
	font-family: "Noto Sans JP","游ゴシック", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	-webkit-text-size-adjust : none;
	width: 100%;
}
a:link {
	color: #3fa8f4;
	text-decoration: none;
}
a:visited {
	color: #1e5fb0;
	text-decoration: none;
}
a:hover {
	color: #3fa8f4;
	text-decoration:underline;
}
#logo a:hover img {
	opacity: .7;
}

/*  font 
-----------------------------------------------------------------------------*/
/* font-size  */
html {	font-size: 12px;}
@media screen and (min-width:321px) {
html {	font-size: 12.5px;}
}
@media screen and (min-width:640px) {
html {	font-size: 13px;}
}
@media screen and (min-width:700px) {
html {	font-size: 13.5px;}
}
@media screen and (min-width:760px) {
html {	font-size: 14px;}
}
@media screen and (min-width:800px) {
html {	font-size: 14.5px;}
}
@media screen and (min-width:850px) {
html {	font-size: 15px;}
}
@media screen and (min-width:900px) {
html {	font-size: 15.5px;}
}
@media screen and (min-width:960px) {
html {	font-size: 16px;}
}

.txt80 {	font-size: 80%; }
.txt90 {	font-size: 90%; }
.txt110 {	font-size: 110%; }
.txt120 {	font-size: 120%; }
.txt150 { font-size: 150%; line-height: 1.4; }
.txt170 { font-size: 170%; line-height: 1.8; }


/* useful */
strong {	
	font-weight:bold; 
	background: linear-gradient(transparent 70%, #ffff66 70%);
	color: #0250a7; 
}
.caution {
  display: block;
  font-size: .8em;
  margin-top: .3em;
}
.white {
  color: #fff;
}
figure {
  text-align: center;
}
.movie {
  text-align: center;
}
video {
  width: 100%;
  max-width: 800px;
  margin: 1em auto;
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}


.pc {	display:none; }
@media screen and (min-width: 481px) { 
	.sp {	display:none !important; }
  .pc {	display:block !important; }
} 

/* float */
.fl {	float:none; }
.fr {	float:none; }
.bc {	clear: both; }
.clearfix::after {
	height: 0;
	display: block;
	clear: both;
	content: " ";
}

/*  align
-----------------------------------------------------------------------------*/
.align_c,.txt-center {	text-align: center !important; }
.valign_m {	vertical-align: middle; }
.mtop1em { margin-top: 1em !important;}
.mtop3em { margin-top: 3em !important;}
.mtop05em { margin-top: .5em !important;}


/*  animation  (jquery inview)
-----------------------------------------------------------------------------*/
.fadeIn,.fadeInRight,.fadeInLeft {
  opacity:0;
}
.fadeInOn,.fadeInRight,.fadeInLeft {
  transition: all 0.5s ease-in;
  opacity: 1 !important;
}


@media screen and (min-width:481px){
  .fadeInRight {
    transform: translateX(-40px);
  }
  .fadeInRightOn {
    transform: translateX(0);
    transition: all 0.5s ease-in;
    opacity: 1 !important;
  }
  .fadeInLeft {
    transform: translateX(40px);
  }
  .fadeInLeftOn{
    transform: translateX(0);
    transition: all 0.5s ease-in;
    opacity: 1 !important;
  }
}

/*  header_SP
-----------------------------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  box-shadow: 0px 1px 1px rgba(0,0,0,.1);
  background-color: #fff;
}
.header__top {
  display: flex;
  align-items: center;
	width: 100%;
  margin: 0 auto;
  padding: .5rem .8rem .2rem;
}
.header__logo {
  margin-left: 0;
}
.header__logo img {
  height: 2rem;
}
.header__medal {
  margin-left: .5rem;
}
.header__medal img {
  height: 3rem;
}
.header__button img {
  height: 3.3rem;
}
.header__button {
  display: flex;
  margin-left: auto;
}
.header__button > div:first-child {
  margin-left: .8rem;
  margin-right: .8rem;
}
.header__button a:hover {
  opacity: .7;
}
.contents {
  min-height: 70vh;
  margin: 4.5rem auto 0;
}

/*  header_TAB
-----------------------------------------------------------------------------*/
@media screen and (min-width: 481px) { 
  header {
    box-shadow: 0px 2px 2px rgba(0,0,0,.1);
  }
  .header__logo {
    margin-left: 1em;
  }
  .header__logo img {
    height: 2.4rem;
  }
  .header__medal {
    margin-left: 1.94rem;
  }
  .header__top {
    padding: .5rem .8rem .2rem;
  }
  .header__medal img {
    height: 4.2rem;
  }
  .header__button {
   margin-left: auto;
    margin-right: 1em;
  }
  .header__button img {
    height: 4.6rem;
  }
  .contents {
    margin-top: 5.5rem;
  }
}

/*  header_PC
-----------------------------------------------------------------------------*/
@media screen and (min-width: 769px) {
  header {
    position: fixed;
    box-shadow: none;
  }
  .contents {
    margin-top: 90px;
  }
}


/* footer_SP
-----------------------------------------------------------------------------*/
#contact_area {
  background-color: #0d6fb8;
  padding-top: 1em;
  padding-bottom: 4.76rem;
}

.footer__ttl {
  margin: 1em auto;
	padding-top: 0;
	background-image: none;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.footer__desc {
  width: 96%;
  max-width: 1000px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}
.footer__contact {
  width: 94%;
  max-width: 1000px;
  margin: 1em auto;
  padding: 1em;
  background: #ffffff;
  background: -webkit-linear-gradient(top, hsl(0,0%,100%) 0%,hsl(0,0%,96%) 47%,hsl(0,0%,93%) 100%);
  background: linear-gradient(to bottom, hsl(0,0%,100%) 0%,hsl(0,0%,96%) 47%,hsl(0,0%,93%) 100%);
  border-radius: 6px;
  box-shadow: 2px 2px 2px rgba(0,0,0,.1);
}
.footer__contactbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 96%;
  max-width: 960px;
  margin: 2em auto;
}
.footer__tel {
  margin: 1em;
}
.footer__teltime {
  /*max-width: 15em;*/
  margin: 1em;
  padding: .5em;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  text-align: center;
}
.footer__mail {
  width: 80%;
  padding: 0 1em 0 3em;
  border-radius: 4px;
  box-shadow: 2px 2px 2px rgba(0,0,0,.1);
  background: url(../img/icon_mail.png) 1em center no-repeat #dea91d;
  background-size: 1.5em auto;
}
.footer__mail a {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 3em;
}
.footer__mail a:hover {
  opacity: .7;
}
address {
  text-align: center;
}
.footer__logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1000px;
  margin: .5em auto 0;
  padding: .2rem 1em;
  text-align: center;
}
.ft__left,
.ft__center {
  width: 50%;
}
.ft__left {
  order: 1;
}
.ft__center {
  order: 0;
}
.ft__right {
  width: 100%;
  order: 2;
}
.ft__center img {
  height: 2rem;
  vertical-align: middle;
}
.footer__nature {
  display: block;
  height: 30px;
  margin: 0 auto .3em;
}
.copyright {
  display: block;
  padding: 1em 0;
  color: gray;
  text-align: center;
}

/*  footer_TAB
-----------------------------------------------------------------------------*/
@media screen and (min-width: 481px) {
  .caution {
    text-align: right;
  }
  .footer__nature {
    height: 40px;
  }
  .footer__contactbox {
    justify-content: center;
  }
  .footer__tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 3em;
    margin-bottom: 0;
  }
  .footer__teltime {
    margin: 1em;
  }
  .footer__mail {
    max-width: 14em;
  }
  .footer__logo {
    display: flex;
    align-items: center;
    padding: 1.5rem 1em;
  }
  .ft__left,
  .ft__center,
  .ft__right {
    width: 33.333%;
    order: 0;
  }
  .ft__center img {
    height: auto;
  }
  .footer__nature {
    height: 2em;
  }
  .copyright {
    height: 1em;
    padding: 0;
    text-align: right;
  }
}

/*  footer_PC
-----------------------------------------------------------------------------*/
@media screen and (min-width: 769px) {
  .footer__logo {
    padding: 1.79rem 1em;
  }
  .footer__tel {
    display: flex;
    flex-direction: row;
	margin: 1rem auto;
  }
}



