@charset "UTF-8";


/*-----------------------------------
-------------   リセットCSS  -----------
------------------------------------*/

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,
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: baselifne;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: none;
  line-height: 1;
  color: #333;
  font-weight: 400;
  letter-spacing: 1px;
  font-display: swap;
}

ol,
ul {
  list-style: none;
}

ol {
  list-style-type: decimal;
  margin-left: 1.5em;
}

blockquote {
  position: relative;
  padding: 30px 15px 8px 15px;
  box-sizing: border-box;
  font-style: italic;
  background: #efefef;
  color: #555;
}

blockquote:before{
  display: inline-block;
  position: absolute;
  top: 13px;
  left: 15px;
  content: "\f10d";
  font-family: FontAwesome;
  color: #cfcfcf;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  font-display: swap;
}

blockquote p {
  padding: 0;
  margin: 10px 0;
  line-height: 1.7;
}

blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

strong {
  font-weight: 700;
}

b {
  font-weight: 700;
}

em {
  font-style: oblique;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
}

img,
iframe {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

/*-----------------------------------
-------------   共通  --------------
------------------------------------*/

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  font-size: 1.6rem;
  overflow-x: hidden;
}

main {
  line-height: 1.8;
}

main h2 {
  color: #13549D;
  font-weight: 600;
  letter-spacing: 0;
}

.wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

* {
  box-sizing: border-box;
}

a {
  color: #333;
  text-decoration: none;
  transition: all ease 0.3s;
  outline: none;
}

a:hover {
  color: #8c8d94;
}

main a {
  text-decoration: underline;
}

.cf::after {
  content: "";
  display: block;
  clear: both;
}

.font-14 {
  font-size: 1.4rem;
}

.font-red {
  color: #CD4C4C;
}

.bg-gr-lr {
  background: #006441;
}

.bg-gr-rl {
  background: -moz-linear-gradient(left, #248000, #006441);
  background: -webkit-linear-gradient(left, #248000, #006441);
  background: linear-gradient(to right, #248000, #006441);
}

.bg-gr {
  background: #7a7a7a;
  color: #fff;
}

.bg-pr {
  background: #e4dafd;
}

.bg-bu {
  background: #cadfff;
}

.bg-pn {
  background: #ffe9f9;
}

.fl {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
}

.fl-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.fl-ju-end {
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}

.fl-bt {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.fl-sa {
  -webkit-box-pack: space-around;
  -ms-flex-pack: space-around;
  justify-content: space-around;
}

.fl-wr {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.fl-ju-st {
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}

.fl-st {
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.fl-c {
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

.fl-ju-c {
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

.arrow {
  position: relative
}

.arrow-right::after {
  position: absolute;
  content: "";
  width: 21px;
  height: 21px;
  border-top: 2px solid #006987;
  border-right: 2px solid #006987;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  box-sizing: border-box;
  right: 4%;
  top: 50%;
}

.arrow-up::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
  box-sizing: border-box;
  left: 50%;
  top: 0px;
}

.t-mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.pc-none {
  display: none;
}

.sp-none {
  display: block;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.sp-img {
  display: none;
}

.t-center {
  text-align: center;
}

.t-bold {
  font-weight: bold;
}

.t-green {
  color: #006341;
}

.t-white {
  color: #fff;
}

.t-gray {
  color: #F5F5F5
}

.t-rgreen  {
  color: #41821D;
}

.t-rbgreen  {
  color: #098991;
}

.t-blue  {
  color: #17599C;
}

.t-mont {
  font-family: 'Montserrat', sans-serif;
  font-display: swap;
}

.t-18bu {
  font-size: 1.8rem;
  color: #17599C;
  font-weight: bold;
}

.f-18 {
  font-size: 1.8rem;
}

.f-18 a {
  color: #17599C;
}

.f-20 {
  font-size: 2.0rem;
}


.b-shadow {
  box-shadow: 0 0 20px -13px rgba(0, 0, 0, 0.4);
}

.t-note-num {
  font-size: 1.0rem;
  vertical-align: top;
  padding-left: 4px;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
  margin-left: 20px;
}

.alignleft {
  float: left;
  margin-right: 20px;
}

.slick-track {
  display: flex;
}

.slick-initialized .slick-slide {
  height: auto !important;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mb20 {
  margin-bottom: 20px;
}

.nowrap {
  white-space: nowrap;
}

.center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.base li {
  background-image: url(img/list-box-bg02.png);
  background-repeat: no-repeat;
  background-position: left top 7px;
  padding-left: 1.2em;
  margin-bottom: 0.5em;
}

ol.no2  {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
}
 
ol.no2 li {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

ol.no2 li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #e2e2e2;
  color: #222;
  display: block;
  float: left;
  line-height: 21px;
  margin-left: -30px;
  text-align: center;
  height: 22px;
  width: 22px;
  border-radius: 50%;
  margin-top: 0.3em;
}

@media screen and (max-width: 1800px) {
  img {
    height: auto;
  }
}

@media screen and (max-width: 1260px) {
  .wrapper {
    max-width: 100%;
    width: 94%;
  }
} 


@media screen and (max-width: 800px) {
  .fl-md {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
  }

  .fl-column-md {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .fl-end-md {
    -webkit-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
  }

  .fl-bt-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .fl-wr-md {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }

  .fl-st-md {
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
  }

  .fl-c-md {
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }

  .fl-alst-md {
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
  }

  .fl-ju-c-md {
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
  }

  .pc-none {
    display: block;
  }

  .sp-none {
    display: none;
  }

  a[href^="tel:"] {
    cursor: default;
    pointer-events: auto;
  }
  .wrapper {
    width: 92%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 560px) {
  body {
    font-size: 1.5rem;
  }
}

/*------header_nav------*/

#nav_toggle,
.sp_header,
.sp_nav,
.sp_nav_r {
    display: none;
}

#header_nav {
  position: fixed;
  justify-content: space-between;
  width: 100%;
  z-index: 600;
  transition: all 1s ease;
  background-color: #fff;
  font-size: 1.5rem;
}

#header_nav > div {
    z-index: 200;
    align-items: center;
}

#header_nav .up-nav {
  width: 100%;
  padding: 25px;
  border-bottom: 1px solid #E5E5E5;
}

#header_nav .r-nav {
  font-size: 1.5rem;
  display: flex;
}

#header_nav .r-nav .nav_coantact a{
  display: block;
  color: #fff;
  background-color: #13549D;
  font-size: 1.4rem;
  padding: 8px 30px;
  border-radius: 5px ;
}

#header_nav .r-nav .nav_coantact li{
  margin-left: 15px;
}

#header_nav .l-nav {
  padding: 15px;
}

/*------sub_menu------*/
#site_header {
  position: relative;
}

.menu > li.menu__multi {
  position: static; /* 親liは基準にしない */
}

ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

ul.menu__third-level {
    visibility: hidden;
    opacity: 0;
}

.menu > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
}

li.menu__multi ul.menu__second-level {
    position: absolute;
    background-color: #fff;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

/* JSで付与する open 状態（hover再現） */
.menu > li.menu__multi.is-open > ul.menu__second-level {
  visibility: visible;
  opacity: 1;
  z-index: 50;
  display: flex;
  background-color: #edfff2e8;
}

/* クリックで閉じた直後、hoverが残っても開き直さないための一時ロック */
body.is-dropdown-locked .menu > li.menu__multi > ul.menu__second-level {
  visibility: hidden !important;
  opacity: 0 !important;
}

/*
li.menu__multi:hover ul.menu__second-level {
    top: 69px;
    visibility: visible;
    opacity: 1;
}
*/
#header_nav ul.pc_nav li.menu__multi ul.menu__second-level li {
    display: block;
    position: relative;
    transition: all .2s ease;
}

#header_nav ul.pc_nav li.menu__multi ul.menu__second-level li a {
    display: block;
    position: relative;
    padding: 0.8em 0 0.8em 0;
    font-size: 15px;
    color: #13549D;
    margin-top: 0;
    border-left: none;
}


li.menu__multi ul.menu__second-level li:last-child a {
    border-bottom: none;
}

li.menu__multi ul.menu__second-level li a::after {
    display: none;
}


li.menu__multi ul.menu__second-level li ul.menu__third-level {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    width: 280px;
    background-color: #F6697A;
    transition: all .2s ease;
}

li.menu__multi ul.menu__second-level li ul.menu__third-level.second {
    top: 50px;
}

li.menu__multi ul.menu__second-level li ul.menu__third-level.third {
    top: 102px;
}

li.menu__multi ul.menu__second-level li ul.menu__third-level.fourth {
    top: 153px;
}

li.menu__multi ul.menu__second-level li:hover ul.menu__third-level {
    visibility: visible;
    opacity: 1;
}

li.menu__multi ul.menu__second-level li ul.menu__third-level li {
    position: relative;
}

li.menu__multi ul.menu__second-level li ul.menu__third-level li:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.menu__second-level {
  position: absolute;
  top: 100%;          /* ヘッダー直下 */
  left: 0;
  width: 100vw;       /* 画面幅いっぱい */
  background: #fff;
  padding: 30px 40px;
  box-sizing: border-box;

  /* 非表示 */
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s ease;
}

/* JSで開いた時 */
.menu > li.menu__multi.is-open > .menu__second-level {
  visibility: visible;
  opacity: 1;
  align-items: center; 
}

.submenu-inner {
  max-width: 1600px;
  flex: 1 1 auto;
  min-width: 0;
}

.submenu-thumb {
  flex: 0 0 auto;
}

.submenu-thumb img {
  display: block;
}

.submenu-list {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, var(--submenu-col-width, 1fr)));
  gap: 10px 25px;
  align-self: center;
  margin-left: 4em;
  margin-top: -20px;
}

/* 折り返し禁止（溢れる場合はJSで .is-3col を付与して列数を変更） */
.submenu-list a {
  white-space: nowrap;
}

.submenu-list.is-3col {
  grid-template-columns: repeat(3, minmax(0, var(--submenu-col-width, 1fr)));
}

#header_nav ul.pc_nav > li a {
  font-size: 1.8rem;
  line-height: 1.4;
  display: block;
  transition: .5s;
  position: relative;
  color: #13549D;
  text-align: center;
  padding: 20px 20px;
  font-weight: 600;
}

#header_nav ul.pc_nav > li a:hover {
  color: #63B57B;
}

#header_nav ul.pc_nav > li.menu__multi.is-open > a {
  color: #63B57B;
}

#header_nav ul.pc_nav > li a::after {
  position: absolute;
  bottom: 3px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #63B57B;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

#header_nav ul.pc_nav > li a:hover::after {
  transform: scale(1, 1);
}

#header_nav ul.pc_nav > li.menu__multi.is-open > a::after {
  transform: scale(1, 1);
}

#header_nav ul.pc_nav > li.noline a::after {
  display: none;
}

@media screen and (max-width: 1400px) {
  #header_nav ul.pc_nav > li a {
    padding: 20px 10px;
  }
}

@media screen and (max-width: 1100px) {
  #header_nav .up-nav {
    padding: 25px;
  }

/*------header_nav------*/    

  #header_nav .up-nav {
    padding: 15px;
  }

  #header_nav {
    background-color: rgba(255, 255, 255, 1);
  }
  
  #header_nav .logo {
    width: 260px;
  }

  #header_nav .logo img {
      width: 100%;
  }

  #header_nav .logo02 {
    width: 260px;
    margin: 0 auto 0 8em;
  }

  #header_nav .logo02 img {
    width: 100%;
}

  #header_nav .r-nav {
    display: none;
  }

  .pc_nav {
      display: none !important;
  }

  .sub_nav {
    display: none !important;
  }

  .r-nav {
    margin-right: 5.5em;
  }

  #nav_toggle,
  #sp_header {
      display: block !important;
  }

  .sp_nav_r {
      display: block;
  }

  .menu > li.menu__multi a {
      display: none !important;
  }

  #header_nav {
      position: fixed;
      width: 100%;
      z-index: 600;
      transition: all 1s ease;
  }

  header .header_logo a {
      margin-top: 4px;
      margin-left: 10px;
  }

  .fl-btn img {
      width: 100%;
  }

  .sp_nav_r a {
      width: 50%;
      display: block;
      color: #fff;
      text-align: center;
      line-height: 1.4;
  }

  .sp_nav_r a img {
      width: 100%;
      margin-left: 100%;
  }

  .bottombtn {
      text-align: center;
      font-size: 14px;
      opacity: 0;
      transition: all 0.5s;
      position: fixed;
      bottom: 0;
      width: 100%;
  }

  .bottombtn.isActive {
      opacity: 1;
      transition: all 0.5s;
  }

  .bottombtn li {
      width: 50%;
  }

  .bottombtn li img {
      width: 100%;
  }

  /*------ハンバーガーメニュー------*/
  .sp_nav {
      position: fixed;
      width: 100%;
      background-color: #fff;
      z-index: 400;
      padding-bottom: 40px;
      top: 0;
      bottom: 0;
      overflow-y: auto;
  }

  /*--------開閉ボタン--------*/
  #nav_toggle {
      position: fixed;
      display: block;
      top: 30px;
      right: 10px;
      height: 58px;
      width: 60px;
      padding: 0px 13px 0;
      margin-left: auto;
      z-index: 999;
      text-align: center;
      cursor:pointer;
  }

  #nav_toggle div {
      position: relative;
      width: 50px;
      height: 30px;

  }

  #nav_toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background: #5D5F68;
      position: absolute;
      left: 0;
      -webkit-transition: 0.2s ease-in-out;
      -moz-transition: 0.2s ease-in-out;
      transition: 0.2s ease-in-out;
  }

  #nav_toggle .text {
      color: #5D5F68;
      font-weight: bold;
      text-align: center;
  }

  #nav_toggle span:nth-child(1) {
      top: 0px;
  }

  #nav_toggle span:nth-child(2) {
      top: 11px;
  }

  #nav_toggle span:nth-child(3) {
      top: 22px;
  }

  /*--------開閉ボタンopen時--------*/
  .open #nav_toggle span {
      background: #5D5F68;
  }

  .open #nav_toggle span:nth-child(1) {
      top: 12px;
      -webkit-transform: rotate(135deg);
      -moz-transform: rotate(135deg);
      transform: rotate(135deg);
  }

  .open #nav_toggle span:nth-child(2) {
      width: 0;
      left: 50%;
  }

  .open #nav_toggle span:nth-child(3) {
      top: 12px;
      -webkit-transform: rotate(-135deg);
      -moz-transform: rotate(-135deg);
      transform: rotate(-135deg);
  }

  /*--------アコーディオンメニュー--------*/
  .acMenu {
      width: 95%;
      padding: 10px;
      padding-top: 140px;
      padding-bottom: 20px;
      margin: 0 auto;
  }

  .acMenu > li {
      border-bottom: 1px solid #ccc;
  }

  .acMenu a {
      display: block;
      text-align: left;
      padding: 1em 1.2em;
      border-bottom: 1px solid #fff;
  }

  .acMenu li p.click {
      padding: 1.5em;
  }

  .acMenu li ul {
      margin: 0 auto;
  }

  .menu-ttl {
      text-align: left;
      padding: 1em .5em;
      cursor: pointer;
  }

  .acMenu3 {
      background-color: #DEDEDE;
  }

  .sub-menu-ttl {
      border-bottom: 1px solid #fff;
      text-align: left;
      background-color: #EFEFEF;
  }

  .sub-menu-ttl:last-child {
      border-bottom: none;
  }

  .acMenu dt.click:before {
      content: "\f0da";
      font-size: 17px;
      font-family: fontAwesome;
      margin-right: 6px;
      font-display: swap;
  }

  .acMenu dt.click.open:before {
      content: "\f0d7";
      font-family: fontAwesome;
      margin-right: 6px;
      font-display: swap;
  }

  .sub-menu-ttl.click:before {
      content: "\f0da";
      font-family: fontAwesome;
      margin-right: 6px;
      font-display: swap;
  }

  .sub-menu-ttl.click.openAcd:before {
      content: "\f0d7";
      font-family: fontAwesome;
      margin-right: 6px;
      font-display: swap;
  }
}

@media screen and (max-width: 768px) {
  #nav_toggle {
    top: 4px;
  }

  #header_nav .l-nav {
    padding: 0;
  }

  #header_nav .logo {
    margin-left: 10px;
    width: 30%;
  }

  #header_nav .logo02 {
    width: 30%;
  }

  header {
    height: 70px;
  }

  #header_nav .logo02 {
    margin: 0 auto 0 3em;
  }

}

@media screen and (max-width: 560px) {
  header {
    height: auto;
  }

  header .logo {
    width: 30%;
  }

  #header_nav .r-nav .nav_coantact .btn02 a br{
    display: block;
  }

  #header_nav .r-nav .nav_coantact a {
    width: 90px;
    height: 60px;
    padding-left: 0.2em;
    padding-right: 0.2em;
  }

  #nav_toggle .text {
    font-size: 1.2rem;
  }

  #nav_toggle div {
    width: 50px;
    height: 30px;
  }

  #nav_toggle div {
    width: 42px;
    height: 22px;
  }

  #nav_toggle {
    top: 5px;
  }

  #header_nav .r-nav {
    font-size: 1.2rem;
  }

}


/*banner*/
.banner .wrapper {
  width: 1800px;
  max-width: 100%;
  margin: 0 auto;
}

.banner .banner-con {
  background-image: url(img/banner-bg.png);
  border-radius: 20px;
  padding: 80px;
}

.banner .banner-con ul {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media screen and (max-width: 1800px) {
  .banner .wrapper {
    width: 96%;
  }
}

@media screen and (max-width: 768px) {
  .banner .banner-con {
    padding: 20px;
  }
}

@media screen and (max-width: 560px) {
  .banner .wrapper {
    width: 94%;
  }

  .banner .banner-con ul {
    gap: 15px;
  }

  .banner .banner-con li {
    width: 47%;
  }

  .banner .banner-con li img {
    width: 100%;
  }
}


/*footer*/
footer .footer__con {
  border-top: 1px solid #ccc;
  padding: 80px 0;
  margin-top: 80px;
}

footer .footer__con h2 {
  margin-bottom: 15px;
}

footer .footer__con h3 {
  font-size: 2.0rem;
  font-weight: 600;
}

footer .footer__con .wrapper {
  width: 1630px;
  max-width: 100%;
  line-height: 1.5;
}

footer .footer__con .wrapper .access {
  margin-top: 20px;
}

footer .copyright {
  margin-top: 20px;
  font-size: 1.2rem;
}

footer .footer__content__up {
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
}

footer .footer__content__up {
  display: flex;
  justify-content: space-between;
}

footer .footer__content__up .l-box {
  width: 450px;
  margin-right: 10px;
  font-size: 1.3rem;
}

footer .footer__content__up .l-box li {
  margin-top: 1em;
  margin-right: 2em;
  list-style:none;
  background-image: url(img/footer-li.png);
  background-repeat: no-repeat;
  background-position: left top 8px;
  padding-left: 0.8em;
}

footer .footer__con .wrapper .l-box p {
  font-size: 1.3rem;
}

footer .footer__content__up nav {
  width: auto;
  font-size: 1.4rem;
}

footer .footer__content__up nav ul {
  margin-right: 20px;
  width: 260px;
  margin-bottom: 1em;
}

footer .footer__content__up nav li {
  margin-bottom: 10px;
  font-weight: 600;
}

footer .footer__content__up nav li a {
  background-image: url(img/footer-li.png);
  background-repeat: no-repeat;
  background-position: left top 8px;
  padding-left: 0.8em;
  display: block;
  font-weight: 400;
}

.footer__sp {
  display: none;
}

.footer__sp a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 60px;
}

.footer__sp a span {
  position: relative;
  display: inline-block;
}

.footer__sp .footer__sp-left {
  background: #2d6aaf;
  width: 50%;
  height: 60px;
  text-align: center;
}


.footer__sp .footer__sp-right {
  background: #13549D;
  width: 50%;
  height: 60px;
  text-align: center;
}

.footer__sp .footer__sp-left a {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.2px;
}

.footer__sp .footer__sp-right a {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.2px;
}

@media screen and (max-width: 1630px) {
  footer .footer__con .wrapper {
    width: 96%;
  }
}

@media screen and (max-width: 1260px) {
  footer .footer__contact {
    padding: 40px;
  }

  footer .footer__contact .footer__contact__con .tel_area .tel {
    font-size: 4.0rem;
    padding-left: 0;
    background-size: contain;
    width: auto;
    background-position: left 10% top 0;
  }

  footer .footer__contact .footer__contact__con .text_area {
    width: 50%;
  }

  footer .footer__contact .footer__contact__con .text_area br{
    display: none;
  }

  footer .footer__contact .footer__contact__con .tel_area {
    width: 45%;
  }
}

@media screen and (max-width: 1000px) {
  footer .footer__btn br {
    display: block;
  }

  footer .footer__btn .btn01 a {
    padding: 30px;
  }

  footer .footer__btn .btn02 a {
    padding: 30px;
  }
  
  footer .footer__contact .footer__contact__con.fl {
    display: block;
  }

  footer .footer__contact .footer__contact__con .text_area {
    width: 100%;
    margin-bottom: 2em;
  }

  footer .footer__contact .footer__contact__con h3 {
    text-align: center;
  }

  footer .footer__contact .footer__contact__con .tel_area {
    width: 100%;
  }

  footer .footer__contact .footer__contact__con .tel_area .tel {
    background-image: none;
  }

  footer .footer__content__up ul.sub-nav.fl {
    display: block;
  }

  footer .footer__content__up .sub-nav {
    width: auto;
  }

  footer .footer__content__up .sub-nav li {
    width: auto;
  }

  footer .footer__content__up .sub-nav li:nth-last-child(2) {
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  
  footer .footer__contact .wrapper {
    width: 100%;
    margin: 0 auto;
  }

  footer .footer__content__up .l-box {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }

  footer .footer__content__up .l-box ul {
    display: none;
  }

  footer .footer__con {
    margin: 60px 0 120px 0;
  }

  footer .footer__content__up nav {
    display: none;
  }

  .footer__sp {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    z-index: 1000;
  }
}

@media screen and (max-width: 560px) {
  footer .footer__btn .fl {
   display: block;
  }

  footer .footer__btn .btn01 {
    width: 100%;
  }

  footer .footer__btn .btn02 {
    width: 100%;
  }

  footer .footer__con {
    margin: 4em 0 80px 0;
  }

  footer .footer__con h2 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  footer .footer__contact .footer__contact__con h3 {
    font-size: 2.0rem;
  }

  footer .footer__contact .footer__contact__con p {
    text-align: left;
  }

  footer .footer__con .wrapper p {
    font-size: 1.4rem;
  }

  footer .footer__contact .footer__contact__lcon p br{
    display: none;
  }

  footer .footer__contact .footer__contact__con .btn {
    display: block;
  }

  footer .footer__contact .footer__contact__con .btn a {
    width: 100%;
    margin-top: 1em;
    margin-left: 0;
  }

  footer .footer__content {
    margin-top: 2em;
    margin-bottom: 100px;
  }

  footer .footer__content__up .l-box {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }

  footer .footer__content__up nav {
    display: none;
  }

  footer .footer__content__up a {
    text-decoration: none;
  }

  footer .copyright {
    text-align: center;
  }

  .footer__sp .footer__sp-left a {
    font-size: 1.2rem;
    letter-spacing: 0;
  }

  .footer__sp .footer__sp-right a {
    font-size: 1.2rem;
    letter-spacing: 0;
  }

}


.fadein {
  animation-name: fade-in;
  animation-duration: 2s;
  /*アニメーション時間*/
  animation-timing-function: ease-out;
  /*アニメーションさせるイージング*/
  animation-delay: .1s;
  /*アニメーション開始させる時間*/
  animation-iteration-count: 1;
  /*繰り返し回数*/
  animation-direction: normal;
  /*往復処理をするかどうか*/
  animation-fill-mode: backwards;
  /*アニメーション後のスタイル*/
}

@keyframes fade-in {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

.fadein {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 1.2s;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein2 {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 1.2s;
}

.fadein2.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeinup {
  animation-name: fade-inup;
  animation-duration: 1s;
  /*アニメーション時間*/
  animation-timing-function: ease-out;
  /*アニメーションさせるイージング*/
  animation-delay: .1s;
  /*アニメーション開始させる時間*/
  animation-iteration-count: 1;
  /*繰り返し回数*/
  animation-direction: normal;
  /*往復処理をするかどうか*/
  animation-fill-mode: backwards;
  /*アニメーション後のスタイル*/
}

@keyframes fade-inup {
  0% {
      opacity: 0;
      transform: translate(0, 30px);
      transition: all 1.2s;
  }
  100% {
      opacity: 1;
      transform: translate(0, 0);
  }
}



