@charset "UTF-8";
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;
}

html {
  font-size: 62.5%;
}

body {
  color: #000;
  font-family: "游ゴシック体","Yu Gothic",YuGothic,"Noto Sans JP","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
  line-height: 1.6;
  font-size: 1.6rem;
  text-align: center;
  width: 100%;
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
}
@media (max-width: 480px) {
  body {
    font-size: 1.4rem;
  }
}

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;
}

img {
  max-width: 100%;
}

a:link,
a:visited {
  color: #043785;
  text-decoration: underline;
}

a:hover,
a:active {
  color: #043785;
}

a img {
  transition: 1.0s;
}

a:hover img {
  filter: alpha(opacity=70);
  opacity: 0.7;
}

.b,
strong {
  font-weight: bold;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.tc {
  text-align: center;
}

.tl {
  text-align: left;
}

.tr {
  text-align: right;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.mb10 {
  margin-bottom: 1rem;
}

.mb20 {
  margin-bottom: 2rem;
}

.mb30 {
  margin-bottom: 3rem;
}

.mb40 {
  margin-bottom: 4rem;
}

.mb50 {
  margin-bottom: 5rem;
}

.m_tb20 {
  margin: 2rem 0;
}

.m_tb30 {
  margin: 3rem 0;
}

.m_tb40 {
  margin: 4rem 0;
}

.m_tb50 {
  margin: 5rem 0;
}

@media (max-width: 768px) {
  .mb10 {
    margin-bottom: 0.75rem;
  }

  .mb20 {
    margin-bottom: 1.5rem;
  }

  .mb30 {
    margin-bottom: 2.2rem;
  }

  .mb40 {
    margin-bottom: 3rem;
  }

  .mb50 {
    margin-bottom: 3.75rem;
  }

  .m_tb20 {
    margin: 1.5rem 0;
  }

  .m_tb30 {
    margin: 2.2rem 0;
  }

  .m_tb40 {
    margin: 3rem 0;
  }

  .m_tb50 {
    margin: 3.75rem 0;
  }
}
@media (max-width: 480px) {
  .mb10 {
    margin-bottom: 0.5rem;
  }

  .mb20 {
    margin-bottom: 1rem;
  }

  .mb30 {
    margin-bottom: 1.5rem;
  }

  .mb40 {
    margin-bottom: 2rem;
  }

  .mb50 {
    margin-bottom: 2.5rem;
  }

  .m_tb20 {
    margin: 1rem 0;
  }

  .m_tb30 {
    margin: 1.5rem 0;
  }

  .m_tb40 {
    margin: 2rem 0;
  }

  .m_tb50 {
    margin: 2.5rem 0;
  }
}


/* loading
========================================================================== */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 5000;
}

.loader {
  margin: -15px 0 0 -15px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 4px solid #000;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.75s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
*[class^="fade"] {
  opacity: 0.01;
  transition: all 500ms;
}

.fade-up {
  /*下から上に*/
  transform: translate(0, 50px);
}

.fade-down {
  /*上から下に*/
  transform: translate(0, -50px);
}

.fade-left {
  /*右から左に*/
  transform: translate(50px, 0);
}

.fade-right {
  /*左から右に*/
  transform: translate(-50px, 0);
}

/* 画面内に入った状態 */
*[class^="fade"].fadein {
  opacity: 1;
  transform: translate(0, 0);
}

.fade-box *[class^="fade"]:nth-of-type(1) {
  -moz-transition-delay: 100ms;
  -webkit-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  -ms-transition-delay: 100ms;
}
.fade-box *[class^="fade"]:nth-of-type(2) {
  -moz-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
}
.fade-box *[class^="fade"]:nth-of-type(3) {
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}
.fade-box *[class^="fade"]:nth-of-type(4) {
  -moz-transition-delay: 400ms;
  -webkit-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
}
.fade-box *[class^="fade"]:nth-of-type(5) {
  -moz-transition-delay: 500ms;
  -webkit-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
}
.fade-box *[class^="fade"]:nth-of-type(6) {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}
.fade-box *[class^="fade"]:nth-of-type(7) {
  -moz-transition-delay: 700ms;
  -webkit-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
}
.fade-box *[class^="fade"]:nth-of-type(8) {
  -moz-transition-delay: 800ms;
  -webkit-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
}
.fade-box *[class^="fade"]:nth-of-type(9) {
  -moz-transition-delay: 900ms;
  -webkit-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
}
.fade-box *[class^="fade"]:nth-of-type(10) {
  -moz-transition-delay: 1000ms;
  -webkit-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
}
.fade-box *[class^="fade"]:nth-of-type(11) {
  -moz-transition-delay: 1100ms;
  -webkit-transition-delay: 1100ms;
  -o-transition-delay: 1100ms;
  -ms-transition-delay: 1100ms;
}
.fade-box *[class^="fade"]:nth-of-type(12) {
  -moz-transition-delay: 1200ms;
  -webkit-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
}
.fade-box *[class^="fade"]:nth-of-type(13) {
  -moz-transition-delay: 1300ms;
  -webkit-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
}
.fade-box *[class^="fade"]:nth-of-type(14) {
  -moz-transition-delay: 1400ms;
  -webkit-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
}
.fade-box *[class^="fade"]:nth-of-type(15) {
  -moz-transition-delay: 1500ms;
  -webkit-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
}
.fade-box *[class^="fade"]:nth-of-type(16) {
  -moz-transition-delay: 1600ms;
  -webkit-transition-delay: 1600ms;
  -o-transition-delay: 1600ms;
  -ms-transition-delay: 1600ms;
}
.fade-box *[class^="fade"]:nth-of-type(17) {
  -moz-transition-delay: 1700ms;
  -webkit-transition-delay: 1700ms;
  -o-transition-delay: 1700ms;
  -ms-transition-delay: 1700ms;
}
.fade-box *[class^="fade"]:nth-of-type(18) {
  -moz-transition-delay: 1800ms;
  -webkit-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
}
.fade-box *[class^="fade"]:nth-of-type(19) {
  -moz-transition-delay: 1900ms;
  -webkit-transition-delay: 1900ms;
  -o-transition-delay: 1900ms;
  -ms-transition-delay: 1900ms;
}
.fade-box *[class^="fade"]:nth-of-type(20) {
  -moz-transition-delay: 2000ms;
  -webkit-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
}
.fade-box *[class^="fade"]:nth-of-type(21) {
  -moz-transition-delay: 2100ms;
  -webkit-transition-delay: 2100ms;
  -o-transition-delay: 2100ms;
  -ms-transition-delay: 2100ms;
}
.fade-box *[class^="fade"]:nth-of-type(22) {
  -moz-transition-delay: 2200ms;
  -webkit-transition-delay: 2200ms;
  -o-transition-delay: 2200ms;
  -ms-transition-delay: 2200ms;
}
.fade-box *[class^="fade"]:nth-of-type(23) {
  -moz-transition-delay: 2300ms;
  -webkit-transition-delay: 2300ms;
  -o-transition-delay: 2300ms;
  -ms-transition-delay: 2300ms;
}
.fade-box *[class^="fade"]:nth-of-type(24) {
  -moz-transition-delay: 2400ms;
  -webkit-transition-delay: 2400ms;
  -o-transition-delay: 2400ms;
  -ms-transition-delay: 2400ms;
}
.fade-box *[class^="fade"]:nth-of-type(25) {
  -moz-transition-delay: 2500ms;
  -webkit-transition-delay: 2500ms;
  -o-transition-delay: 2500ms;
  -ms-transition-delay: 2500ms;
}
.fade-box *[class^="fade"]:nth-of-type(26) {
  -moz-transition-delay: 2600ms;
  -webkit-transition-delay: 2600ms;
  -o-transition-delay: 2600ms;
  -ms-transition-delay: 2600ms;
}
.fade-box *[class^="fade"]:nth-of-type(27) {
  -moz-transition-delay: 2700ms;
  -webkit-transition-delay: 2700ms;
  -o-transition-delay: 2700ms;
  -ms-transition-delay: 2700ms;
}
.fade-box *[class^="fade"]:nth-of-type(28) {
  -moz-transition-delay: 2800ms;
  -webkit-transition-delay: 2800ms;
  -o-transition-delay: 2800ms;
  -ms-transition-delay: 2800ms;
}
.fade-box *[class^="fade"]:nth-of-type(29) {
  -moz-transition-delay: 2900ms;
  -webkit-transition-delay: 2900ms;
  -o-transition-delay: 2900ms;
  -ms-transition-delay: 2900ms;
}
.fade-box *[class^="fade"]:nth-of-type(30) {
  -moz-transition-delay: 3000ms;
  -webkit-transition-delay: 3000ms;
  -o-transition-delay: 3000ms;
  -ms-transition-delay: 3000ms;
}

/* #wrapper,#contents
========================================================================== */
#wrapper {
  text-align: left;
}

#contents {
  overflow: hidden;
}


/* header
==================================================================== */
/* // fixed  スクロールするとメニューが固定 */
 .fixed {
  position: fixed !important;
  top: 0;
  width: 100%;
}

#header {
  z-index: 1000;
  width: 100%;
  padding: 15px;
  background: #fff;
  box-sizing: border-box;
  border-bottom: 1px solid #ccc;
}

#header:after {
  content: '';
  display: block;
  clear: both;
}

.header_logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}

.header_box img {
  vertical-align: middle;
}

.header_box .logo img {
  width: 200px;
}

.header_mail {
  background: linear-gradient(to top, #0262ec, #02b0f9);
  padding: 8px 10px;
  border-radius: 10px;
  width: 238px;
}

.header_mail:hover{
  background: linear-gradient(to top, #199595, #4dd1d1);
}

.header_mail a{
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  padding: 0 20px;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
}

.large-size  {
  color: #fff;
  vertical-align: middle;
}

.sp_mail {
  display: none;
}

.sp_small{
  display: none;
}


/* .container
============================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* .breadcrumbs
============================================================== */
.breadcrumbs_box {
  margin-bottom: 80px;
}

.breadcrumbs {
  padding-left: 0;
  margin-left: 0;
}

.breadcrumbs li {
  display: inline;
  list-style: none;
}

.breadcrumbs li:after {
  content: '>';
  padding: 0 3px;
  color: #555;
}

.breadcrumbs li:last-child:after {
  content: '';
}

.breadcrumbs li a {
  color: #043785;
}

.breadcrumbs li a:hover {
  text-decoration: underline;
}

/* contents
================================================================== */
.contents_mail {
  background: linear-gradient(to top, #0262ec, #02b0f9);
  padding: 20px 20px;
  border-radius: 10px;
  width: 400px;
  margin: 0 auto 90px;
}

.contents_mail:hover{
  background: linear-gradient(to top, #199595, #4dd1d1);
}

.contents_mail a{
  font-size: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  padding: 0 40px;
  color: #fff;
  text-decoration: none;
}

.contents_mail .material-icons {
  color: #fff;
  font-size: 3.2rem;
  vertical-align: middle;
}

/* breadcrumbs_2 パンくずリスト
==================================================================== */
.breadcrumbs_2{
  margin-bottom: 80px;
}

.breadcrumbs_2 li {
  display: inline;
  list-style: none;
  font-size: 1.6rem;
  margin-right: 20px;
}

.breadcrumbs_2 li:last-child:after {
  content: '';
}

.breadcrumbs_2 li a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  color: #000;
}

.breadcrumbs_2 li a:hover {
  text-decoration: underline;
  color: #009fdd;
}

/* footer
========================================================================== */
#footer {
  margin: 0 auto;
}

.footer_logo {
  margin: 0 auto;
  text-align: center;
  padding: 30px;
  border-top: 1px solid #ccc;
}

.footer_logo img {
  width: 100px;
  margin-bottom: 10px;
}

.copyright {
  margin-top: 20px;
}

/* ---------------------------------------------------------
@media (max-width: 1200px)
----------------------------------------------------------- */
@media (max-width: 1200px){
  .container{
    width: 92%;
  }
}

/* ---------------------------------------------------------
@media (max-width: 1024px)
----------------------------------------------------------- */
@media (max-width: 1024px){
  .contents_mail {
    width: 300px;
  }

  .contents_mail a {
    font-size: 2rem;
    padding: 0 30px;
  }

  .contents_mail .material-icons {
    font-size: 2.5rem;
  }

  .footer_logo {
    margin: 0 auto;
    text-align: center;
    padding: 20px;
  }
}

/* ---------------------------------------------------------
@media (max-width: 900px)
----------------------------------------------------------- */
/* @media (max-width: 900px){ */
  #header {
    padding: 10px;
  }

  .header_box .logo img {
    width: 150px;
  }

  .header_mail {
    padding: 5px 5px;
    width: 200px;
  }

  .header_mail a {
    font-size: 1.4rem;
    padding: 5px 10px;
  }
}

/* ---------------------------------------------------------
@media (max-width: 768px)
----------------------------------------------------------- */
@media (max-width: 768px){
  body {
    background-image: url(../img/spprimary_bg.jpg);
  }

  .header_mail {
    padding: 5px 15px;
    width: 195px;
  }

  .contents_mail .material-icons {
    font-size: 2.2rem;
  }

  .footer_logo {
    padding: 10px;
  }

  .material-icons.large-size {
    font-size: 2.2rem;
  }

  .container {
    width: 94%;
  }
}

/* ---------------------------------------------------------
@media (max-width: 500px)
----------------------------------------------------------- */
@media (max-width: 500px){
  .pc_mail {
    display: none;
  }

  .sp_mail {
    display: block;
  }

  .header_mail {
    padding: 5px 5px;
    width: 132px;
  }

  .contents_mail {
    width: 230px;
  }

  .contents_mail a {
    font-size: 1.6rem;
    padding: 0 10px;
  }
}

/* ---------------------------------------------------------
@media (max-width: 428px)
----------------------------------------------------------- */
@media (max-width: 428px){
  .container {
    width: 96%;
  }

  .contents_mail a {
    font-size: 1.4rem;
    padding: 0 10px;
  }

  .contents_mail {
    width: 195px;
  }

  .contents_mail .material-icons {
    font-size: 2rem;
  }

  .material-icons.large-size {
    font-size: 1.8rem;
  }

  .breadcrumbs_box {
    margin-bottom: 30px;
  }

  .footer_logo img {
    width: 80px;
  }
}

/* ---------------------------------------------------------
@media (max-width: 340px)
----------------------------------------------------------- */
@media (max-width: 340px){
  .header_mail {
    width: 108px;
  }

  .sp_mail {
    display: none;
  }

  .sp_small{
    display: block;
  }
}
