﻿@charset "UTF-8";
@import "base.css";
@import "font-family.css";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&family=Roboto:wght@300;400;700;900&display=swap');
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 18px;
  -webkit-text-size-adjust: none;
}
header, section, footer, aside, nav, main, article, figure {
  display: block;
}
img {
  vertical-align: bottom;
}
a {
  color: #ff6100;
}
a:hover, a:active {
  text-decoration: none;
}
table {
  width: 100%
}
p {
  margin: 0 0 1.5em;
}
.section {
  padding: 0 0 30px;
}
p, dd, td, th, li {
  line-height: 1.8em;
}
#totop {
  position: fixed;
  bottom: 60px;
  right: 50px;
  z-index: 10;
  margin-bottom: 0;
  width: 50px;
}
#totop a {
  display: block;
  transition: all 0.5s;
  -webkit-animation: slide-top 0.8s linear infinite alternate-reverse;
  animation: slide-top 0.8s linear infinite alternate-reverse;
}
#totop a:hover {
  opacity: 0.7;
}
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.bold {
  font-weight: bold;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
*, *:before, *:after {
  box-sizing: border-box;
  outline: none;
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
body{
  font-family: 'Roboto', sans-serif;
  color: #353535;
}
#wrapper {
  min-width: 1200px;
  overflow: hidden;
}
.container {
  width: 100%;
  padding: 0 5%;
  margin: 0 auto;
  position: relative;
}
img {
  max-width: 100%;
}
.sp {
  display: none;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background: rgba(0,0,0,0.5);
}
h1 {
  display: none;
}
#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  margin: 0;
  position: relative;
  padding-top: 36px;
  padding-bottom: 24px;
}
.logo:before {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100px;
    background: #ff6100;
    top: -77px;
    right: -65px;
    border-bottom-right-radius: 200px;
}
.gnavi {
  display: flex;
}
.gnavi > li  {
    position:relative;
  padding: 0 20px;
}
.gnavi > li > a {
  display: block;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Roboto Condensed', sans-serif;
  transition: all 0.3s;
  position: relative;
}
.gnavi > li>a:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background: #ff6100;
  bottom: 0;
  left: calc(50% - 15px);
  border-radius: 2px;
  transform: scale(0,1);
  transition: all 0.3s;
}
.gnavi > li > a:hover, .gnavi >li.active >a{
  color: #ff6100;
}
.gnavi > li > a:hover:after,.gnavi > li.active > a:after {
  transform: scale(1,1);
}
.submenu {
    position: absolute;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.submenu a {
    display: block;
    background: #ff6100;
    color: #fff;
    margin-top: 1px;
    text-decoration: none;
    padding: 10px 20px;
    white-space: nowrap;
    transition: all 0.5s;
    font-size: 15px;
}

.submenu a:hover {
    color: #ffff00;
}
.mainvisual {
  height: 755px;
  color: #fff;
  background: url("../W_images/slide.jpg") no-repeat center center/cover;
}
.mainvisual .container {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-end;
    height: 100%;
}
.idx_main_img {
    margin: 0 auto 0 100px;
}
.idx_main_link {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
  position: relative;
  padding-right: 15px;
}
.idx_main_link:after {
  content: '';
  position: absolute;
  background: url("../W_images/icon_arr01.png") no-repeat center center/100% auto;
  width: 41px;
  height: 112px;
  bottom: 14px;
  right: -38px;
}
.idx_main_link:before {
  content: '';
  position: absolute;
  background: url("../W_images/icon_arr02.png") no-repeat center center/100% auto;
  width: 126px;
  height: 129px;
  top: 0;
  right: calc(100% - 20px);
}
.idx_main {
    padding-right: 40px;
    text-align: right;
}
.idx_main_ttl {
    font-size: 40px;
    line-height: 1.4em;
    text-transform: uppercase;
    font-weight: 900;
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 10px;
}
.idx_main_ttl span {
  color: #ff6100;
}
.idx_main_ttl:after {
    content: '';
    position: absolute;
    width: 250px;
    height: 8px;
    background: #ff6100;
    right: 0;
    bottom: 0;
}
.idx_main_txt {
    font-size: 35px;
    line-height: 1.3em;
    font-family: 'iCielSanelma';
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
.idx_main_note {
    width: 220px;
    display: inline-block;
    background: #ff6100;
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
    padding: 9px;
    border-bottom-right-radius: 40px;
    margin-bottom: 70px;
}
.idx_main_link li {
    margin-left: 35px;
    position: relative;
}
.idx_main_link a {
  text-decoration: none;
  color: #fff;
  font-weight: 300;
  transition: all 0.3s;
}
.idx_main_link a:hover {
  color: #ff6100;
}
.idx_main_link li:before {
  content: '';
  position: relative;
  display: inline-block;
  background: url("../W_images/icon_tel.png") no-repeat center center/100% auto;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  top: 3px;
}
.idx_main_link li:nth-child(2):before {
  background-image: url("../W_images/icon_mail.png");
}
.idx_main_link li:nth-child(3):before {
  background-image: url("../W_images/icon_web.png");
  top: 5px;
}
.box01 {
  background: url("../W_images/b01_bg.jpg") no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 30px 0 60px;
}
.b01_list .slick-track{
	
	margin:0 auto;
}
.b01_list .slick-slide {
  margin: 0 15px;
}
.b01_list .slick-slide a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  background: #fff;
  padding: 15px;
}
.b01_list .slick-slide img {
  max-height: 100%;
  filter: grayscale(100%);
  transition: all 0.3s;
}
.b01_list .slick-slide a:hover img {
  filter: grayscale(0%);
}
.b01_ttl {
    font-size: 20px;
    font-weight: 700;
    padding-left: 80px;
}
.box02 {
  background: url("../W_images/b02_bg.jpg") no-repeat center center/cover;
  padding: 20px 0 40px;
}
.box02 .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.b02_img {
    flex-shrink: 0;
    margin: 0 0 0 50px;
    position: relative;
}
.b02_video {
    position: absolute;
    bottom: 74px;
    left: -33px;
    text-decoration: none;
    color: #fff;
}
.b02_btn {
    position: relative;
  margin: 40px auto;
  display: block;
    width: 70px;
    height: 70px;
    background: #f00808;
    border-radius: 50%;
    left: 0;
    bottom: 0;
  transition: all 0.3s;
}
.b02_btn span{
  width: 0;
height: 0;
border-style: solid;
border-width: 10px 0 10px 20px;
border-color: transparent transparent transparent #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.b02_btn:before,  .b02_btn:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  border: 1px solid #f00808;
}
.b02_btn:before {
	-webkit-animation: scale-up-center 1.5s linear infinite both;
	        animation: scale-up-center 1.5s linear infinite both;
}
.b02_btn:after {
	-webkit-animation: scale-up-center 1.5s linear 0.5s infinite both;
	        animation: scale-up-center 1.5s linear 0.5s infinite both;
}
@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}
.b02_btn:hover {
  background: #000000;
}
.b02_btn:hover:before, .b02_btn:hover:after {
  border-color: #000000;
}
.b02_video > span:nth-child(1) {
    background: url(../W_images/b02_icon.png) no-repeat center center/100% auto;
    width: 150px;
    text-align: center;
    text-transform: uppercase;
    display: block;
    margin: 0 auto;
    padding: 6px 0 11px;
    font-size: 16px;
    font-weight: 600;
}
.idx_h2 {
    font-size: 40px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    line-height: 1.5em;
    margin-bottom: 20px;
}
.b02_ttl {
    font-size: 30px;
    line-height: 1.1em;
    font-family: 'iCielSanelma';
  margin-bottom: 20px;
}
.b02_main {
    text-align: justify;
}
.idx_btn {
    margin: 0;
}
.idx_btn a {
  text-decoration: none;
  color: #fff;
  background: #000;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 40px;
  padding: 7px 30px;
  transition: all 0.3s;
}
.idx_btn a:hover {
  background: #ff6100;
}
.idx_btn a:after {
  content: '';
  position: relative;
  display: inline-block;
  width: 0;
height: 0;
border-style: solid;
border-width: 4px 0 4px 6px;
border-color: transparent transparent transparent #ffffff;
  margin-left: 10px;
}
.box03 {
  background: url("/userfile/config/TNSM-bg.jpg") no-repeat center center/cover;
  padding: 60px 0;
  color: #fff;
}
.box03 .idx_h2, .box04 .idx_h2 {
  text-align: center;
  color: #ff6100;
}
.b03_row {
    display: flex;
    justify-content: space-between;
    position: relative;
  padding: 0 3%;
}
.b03_col {
    width: calc(50% - 55px);
}
.b03_row:before {
  content: '';
  position: absolute;
  width: 5px;
  height: 100%;
  background: #ff6100;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}
.b03_item {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 45px;
  transition: all 0.3s;
  position: relative;
}
.b03_item:before, .b03_item:after {
  content: '';
  position: absolute;
}
.b03_item:before {
  width: 55px;
  height: 1px;
  background: #fff;
  opacity: 0.1;
  top: 50%;
  left: 100%;
}
.b03_item:after {
  width: 26px;
  height: 26px;
  border: 8px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  left: calc(100% + 42px);
  top: calc(50% - 13px);
  opacity: 0;
  transition: all 0.3s;
}
.b03_itm_ttl:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #7da7d9;
  left: calc(100% + 50px);
  border-radius: 50%;
  top: calc(50% - 5px);
}
.b03_item:hover:after {
  opacity: 1;
}
.b03_item:hover {
  background: rgba(255,97,0,0.2);
}
.b03_item:last-child {
  margin-bottom: 0;
}
.b03_itm_ttl {
    font-size: 24px;
    font-weight: 900;
    color: #ff6100;
    text-transform: uppercase;
    margin: 0 0 15px;
  transition: all 0.3s;
}
.b03_col:nth-child(1) {
  text-align: right;
}
.b03_itm_txt {
    font-weight: 300;
    margin-bottom: 20px;
}
.b03_item:hover .b03_itm_ttl {
  color: #fff;
}
.b03_itm_btn {
    margin: 0;
}
.b03_itm_btn a {
  text-decoration: none;
  color: #fff;
  text-align: center;
  display: inline-block;
  text-transform: uppercase;
  border: 1px solid;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  padding: 0 20px;
}
.b03_col:nth-child(2) .b03_item:before {
  left: auto;
  right: 100%;
}
.b03_col:nth-child(2) .b03_item:after {
    right: calc(100% + 42px);
  left: auto;
}
.b03_col:nth-child(2) .b03_itm_ttl:after {
    right: calc(100% + 50px);
  left: auto;
}
.b03_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.b03_list:before, .b03_list:after {
  content: '';
  position: absolute;
  background: #fff;
  opacity: 0.3;
}
.b03_list:before {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
}
.b03_list:after {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}
.b03_list li {
  width: 50%;
  font-weight: 300;
  line-height: 1.3em;
}
.b03_list li:nth-child(n+4) {
  margin-top: 140px;
}
.b03_list li:nth-child(2n+1) {
  text-align: right;
}
.b03_list li:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #464646;
    text-align: center;
    padding: 15px;
    border-radius: 20px;
  z-index: 2;
}
.b03_itm_img {
    margin: 0;
}
.box04 {
  padding: 60px 0;
}
.b04_tab {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.b04_tab_item {
    cursor: pointer;
    background: #ebebeb;
    padding: 10px 30px;
    border-radius: 30px;
    position: relative;
    width: 220px;
    text-align: center;
    margin: 0 5px;
    transition: all 0.3s;
}
.b04_tab_item:after {
  content: '';
  position: absolute;
  width: 0;
height: 0;
border-style: solid;
border-width: 8px 5px 0 5px;
border-color: #ffd49f transparent transparent transparent;
  left: calc(50% - 5px);
  bottom: -7px;
  opacity: 0;
  transition: all 0.3s;
}
.b04_tab_item.current:after {
  opacity: 1;
}
.b04_tab_item.current, .b04_tab_item:hover {
  background: #ffd49f;
}
.b04_main {
  display: none;
}
.b04_main.current {
  display: inherit;
}
.b04_item {
  margin: 0 15px;
}
.b04_itm_img img {
    width: 100%;
}
.b04_item a {
  text-decoration: none;
  color: #353535;
  display: block;
  transition: all 0.3s;
}
.b04_itm_cat {
    font-size: 14px;
    background: #ffd39f;
    display: inline-block;
    padding: 0 20px;
    border-radius: 20px;
    margin: 0 0 15px;
}
.b04_itm_ttl {
    font-size: 20px;
    color: #ff6100;
    line-height: 1.5em;
    text-transform: uppercase;
}
.b04_itm_add {
    margin: 0;
    font-size: 14px;
  background: url("../W_images/icon_add.png") no-repeat left center;
  padding-left: 20px;
}
.b04_itm_time {
    margin: 0;
    font-size: 14px;
  background: url("../W_images/icon_time.png") no-repeat left center;
  padding-left: 20px;
}
.b04_itm_fee {
    margin: 0;
	
    font-size: 14px;
  background: url("../W_images/ico_fee.png") no-repeat left center;
  background-size: 17px;
  padding-left: 21px;
}
.b04_itm_time span {
  text-decoration: underline;
}
.b04_list {
  margin: 0 -15px;
}
.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  border: none;
  background: url("../W_images/icon_prev.png") no-repeat center center/100% auto;
  width: 40px;
  height: 28px;
  cursor: pointer;
  transition: all 0.3s;
  text-indent: -500000px;
}
.slick-prev {
  left: 15px;
}
.slick-next {
  right: 15px;
  background-image: url("../W_images/icon_next.png");
}
.slick-arrow:hover, .b04_item a:hover {
  opacity: 0.7;
}
.b04_list .slick-arrow {
  top: 40%;
}
.box05 {
    padding: 60px 0;
  background: url("../W_images/b05_bg.jpg") no-repeat center center/cover;
}
.box05 .idx_h2 {
  text-align: center;
  color: #ff6100;
}
.b05_item a {
  text-decoration: none;
  position: relative;
  display: block;
  color: #fff;
  transition: all 0.3s;
}
.b05_itm_main {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 30px 25px;
}
.b05_itm_main:before {
  content: '';
  position: absolute;
  background: url("../W_images/b05_icon.png") no-repeat center center/100% auto;
  width: 65px;
  height: 65px;
  left: 30px;
  bottom: calc(100% + 5px);
}
.b05_itm_img {
  margin: 0;
  overflow: hidden;
  position: relative;
}
.b05_itm_img:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}
.b05_itm_img img {
  width: 100%;
  transition: all 0.7s;
}
.b05_item a:hover .b05_itm_img img {
  transform: scale(1.1,1.1);
}
.b05_list {
  margin: 0 -15px;
}
.b05_list .b05_item {
  margin: 0 15px;
}
.b05_itm_ttl {
    color: #ff6100;
    text-transform: uppercase;
    line-height: 1.3em;
    border-left: 4px solid;
    padding-left: 10px;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.b05_itm_txt {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
  padding-left: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.box06 {
  padding: 60px 0;
}
.box06 .container {
  display: flex;
  justify-content: space-between;
}
.b06_left, .b06_right {
    width: calc(50% - 30px);
  position: relative;
}
.box06 .idx_h2 {
  color: #ff6100;
}
.b06_video {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.b06_video_item {
    width: calc(50% - 10px);
    margin-bottom: 30px;
}
.b06_video_item a {
    display: block;
    text-decoration: none;
    color: #353535;
    transition: all 0.3s;
}
.b06_video_img {
    margin: 0 0 15px;
    position: relative;
}
.b06_video_img img {
  width: 100%;
}
.b06_video_img:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.6;
  transition: all 0.3s;
}
.b06_video_img:before {
  content: '';
  position: absolute;
  background: url("../W_images/b06_icon.png") no-repeat center center/100% auto;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
}
.b06_video_item a:hover .b06_video_img:after {
  opacity: 0;
}
.b06_video_ttl {
    font-size: 17px;
    text-transform: uppercase;
    line-height: 1.3em;
  margin-bottom: 5px;
}
.b06_video_txt {
    margin: 0;
    font-size: 16px;
    line-height: 1.3em;
    font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.b06_btn {
    margin: 0;
    font-size: 14px;
    position: absolute;
    right: 0;
    top: 13px;
}
.b06_btn a {
    display: inline-block;
    text-decoration: none;
    color: #353535;
    border: 1px solid #ccc;
    padding: 3px 20px;
    border-radius: 30px;
    transition: al 0.3s;
}
.b06_btn a:after {
  content: '';
  position: relative;
  display: inline-block;
  width: 0;
height: 0;
border-style: solid;
border-width: 4px 0 4px 6px;
border-color: transparent transparent transparent #353535;
  margin-left: 7px;
  transition: all 0.3s;
}
.b06_btn a:hover {
  color: #fff;
  background: #353535;
}
.b06_btn a:hover:after {
  border-left-color: #fff;
}
.b06_left {
  border-right: 1px solid #ccc;
  width: 50%;
  padding-right: 30px;
}
.b06_left .b06_btn {
  right: 30px;
}
.b06_news_item {
    margin-bottom: 30px;
}
.b06_news_item a {
    display: flex;
    text-decoration: none;
    color: #353535;
    border: 1px solid #ccc;
    transition: all 0.3s;
}
.b06_news_item a:hover {
  opacity: 0.7;
}
.b06_news_img {
    margin: 0;
    flex-shrink: 0;
  width: 50%;
  overflow: hidden;
}
.b06_news_img img {
  width: 100%;
  transition: all 0.7s;
}
.b06_news_item a:hover .b06_news_img img {
  transform: scale(1.1,1.1);
}
.b06_news_main {
    padding: 20px 30px;
  display: flex;
  flex-direction: column;
  
}
.b06_news_ttl {
    font-size: 17px;
    text-transform: uppercase;
    line-height: 1.3em;
    margin-bottom: 5px;display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.b06_news_info {
    font-size: 12px;
    font-weight: 300;
    margin: 0 0 5px;
}
.b06_news_txt {
    margin: 0;
    font-size: 16px;
    line-height: 1.3em;
    font-weight: 300;display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.b06_news_item:last-child {
  margin-bottom: 0;
}
#footer {
    background: #17171d;
    color: #fff;
    padding: 60px 0 0;
}
.f_main {
    display: flex;
    justify-content: space-between;
}
.f_mod {
    width: calc(25% - 22.5px);
}
.f_mod_ttl {
    text-transform: uppercase;
    color: #ff6100;
    margin-bottom: 20px;
}
.f_info {
    font-size: 14px;
    margin: 0 0 14px;
  background: url("../W_images/f_add.png") no-repeat left center;
  padding-left: 30px;
}
.f_tel{
  background-image: url("../W_images/f_tel.png");
}
.f_mail{
  background-image: url("../W_images/f_mail.png");
}
.f_info:last-child {
  margin-bottom: 0;
}
.f_info a {
  color: #fff;
  text-decoration: none;
}
.f_tel {
  color: #ff6100;
  font-size: 16px;
}
.f_menu {
    display: flex;
    flex-flow: column wrap;
    height: 150px;
}
.f_menu a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.f_menu a:hover {
  color: #ff6100;
}
.f_menu li {
  position: relative;
  padding-left: 15px;
}
.f_menu li:before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1px solid #fff;
  left: 0;
  top: 14px;
  transform: rotate(45deg);
}
.f_social li:not(:last-child){margin-bottom: 5px;}
.f_social a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    position: relative;
  padding-left: 85px;
  transition: all 0.3s;line-height: 1.5em;
}
.f_social a:hover {
  color: #ff6100;
}
.f_social a:before {
  content: '';
  position: absolute;
  background: url("../W_images/f_social01.png") no-repeat center center/100% auto;
  width: 30px;
  height: 30px;
  left: 0;
 top: calc(50% - 15px);
}
.f_social li:nth-child(2) a:before {
  background-image: url("../W_images/f_social02.png");
}
.f_social li:last-child a:before {
  background-image: url("../W_images/f_social03.png");
}
.f_social a:after {
  content: '';
  position: absolute;
  width: 45px;
  height: 1px;
  background: #fff;
  left: 35px;
  top: 50%;
}
.f_txt {
    font-size: 14px;
}
.f_form {
    position: relative;
}
.f_form input {
    width: 100%;
    border: none;
    padding: 5px 15px;
    border-radius: 10px;
}
.f_form .button {
    cursor:pointer;
    background: none;
    border: none;
    position: absolute;
    right: 10px;
    top: 3px;
}
.copyright {
    margin: 0;
    text-align: center;
    font-size: 15px;
    text-transform: uppercase;
    padding: 40px 0;
    border-top: 1px solid #323232;
}
.b03_itm_img img {
    width: 90%;
}
.copyright a {
  color: #fff;
  text-decoration: none;
}
.orange{color: #ff6100;}
/*
  font-family: 'Roboto', sans-serif;
  font-family: 'Roboto Condensed', sans-serif;
*/
@media screen and (min-width: 1600px) {
.gnavi > li {
    padding: 0 1.5vw;
}
.gnavi > li > a {
    font-size: 22px;
    padding: 0;
}
.idx_main_link a {
    font-size: 22px;
}
.idx_main_txt {
    font-size: 43px;
}
.idx_main_ttl {
    font-size: 45px;
}
.box01 {
    padding: 40px 0 70px;
}
.idx_main_link li {
    margin-left: 50px;
}
  .b01_ttl {
    font-size: 24px;
    padding-left: 140px;
}
.b01_list .slick-slide a {
    height: 90px;
}
.idx_h2 {
    font-size: 46px;
}
.b02_ttl {
    font-size: 36px;
}
.b03_list li,.b05_itm_ttl, .b06_video_ttl, .b06_news_ttl, .f_mod_ttl {
    font-size: 22px;
}
.b04_itm_cat, .b04_itm_add, .b04_itm_time, .b05_itm_txt, .b06_btn, .b06_video_txt, .b06_news_txt, .f_info, .f_menu a, .f_social a, .f_txt {
    font-size: 18px;
}
.b04_itm_ttl {
    font-size: 26px;
}
  .b06_news_info {
    font-size: 15px;
  }
  .f_social li {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1400px) {
  .container {
    padding: 0 3%;
  }
}
@media screen and (max-width: 768px) {
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 14px;
}
  #wrapper {
    min-width: 100%;
    margin: 0;
    padding-top:0;
  }
  #main, #footer {
    min-width: 100%;
  }
  .container {
    padding: 0 3%;
    width: 100%;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  /* MENU-ICON */
  .menu-icon {
    width: 50px;
    height: 43px;
    box-sizing: border-box;
    text-align: center;
    text-transform: uppercase;
    line-height: 1em;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    z-index: 99999;
    background: #ff6100;
    margin-left: 10px;
  }
  .menu-icon span {
    display: block;
    margin: 0 auto 15px;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -webkit-transition-duration: 0;
    -moz-transition-duration: 0;
    -ms-transition-duration: 0;
    -o-transition-duration: 0;
    transition-duration: 0;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
    top: 12px;
    left: 0;
    position: relative;
  }
  .menu-icon span::after, .menu-icon span::before {
    display: block;
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -webkit-transition-property: margin, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0;
    -moz-transition-delay: 0.2s, 0;
    -ms-transition-delay: 0.2s, 0;
    -o-transition-delay: 0.2s, 0;
    transition-delay: 0.2s, 0;
  }
  .menu-icon span::before {
    margin-top: -10px;
  }
  .menu-icon span::after {
    margin-top: 10px;
  }
  .menu-icon.active span {
    background-color: transparent;
  }
  .menu-icon.active span::before, .menu-icon.active span::after {
    margin-top: 0px;
    -webkit-transition-delay: 0, 0.2s;
    -moz-transition-delay: 0, 0.2s;
    -ms-transition-delay: 0, 0.2s;
    -o-transition-delay: 0, 0.2s;
    transition-delay: 0, 0.2s;
  }
  .menu-icon.active span::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .menu-icon.active span::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
    .gnv-ico {
        width: 50px;
        height: 55px;
        position: absolute;
        background: rgba(255, 255, 255, 0.3);
        right: 20px;
        top: 0 !important;
        transform: none !important;
        border: none !important;
    }
  .gnv-ico:before {
    content: '';
    position: absolute;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: calc(50% - 3px);
    top: calc(50% - 3px);
    transition: all 0.5s ease;
  }
  .gnavi li.active > .gnv-ico:before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  #totop {
    width: 40px;
    right: 3%;
    bottom: 50px;
    line-height: 0;
  }
.logo {
    padding: 20px 0 15px;
    width: 180px;
}
.logo:before {
    top: -87px;
}
#gnavi {
    top: 60px;
    position: fixed;
    left: 0;
    width: 100%;
  display: none;
    background: rgba(0,0,0,0.9);
    height: calc(100% - 60px);
  overflow: auto;
  padding: 30px 3%;
}
.gnavi {
    display: block;
}

.gnavi li  a {
    background: #ff6100;
    color: #fff!important;
    padding: 15px 20px;
    font-size: 16px;
    text-align: center;
    margin-bottom: 1px;
}
  .gnavi > li>a:after {
    display: none;
  }
    .submenu {
        position: relative;
    }
        .submenu li a {
            background: #af4200;
        }
.mainvisual .container {
    display: block;
}
.idx_main {
    padding: 90px 0 0;
  text-align: center;
}
.idx_main_logo {
    width: 77%;
    margin: 0 auto 3vw;
}
.idx_main_ttl {
    font-size: 5.5vw;
    padding-bottom: 3vw;
    margin-bottom: 2vw;
}
.idx_main_ttl:after {
    width: 30vw;
    height: 1vw;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}
.idx_main_txt {
    font-size: 4.5vw;
    margin-bottom: 3vw;
}
  .idx_main_link:before, .idx_main_link:after, .idx_main_img {
    display: none;
  }
.idx_main_link {
    padding: 0;
    margin: 0;
    justify-content: center;
  flex-wrap: wrap;
}
.mainvisual {
    height: auto;
    padding-bottom: 40px;
}
.idx_main_link li {
    margin: 10px 10px 0;
}
.b01_ttl {
    padding: 0;
}
.box01 {
    padding: 30px 0 40px;
}
.box02 {
    padding: 40px 0 0;
}
.box02 .container {
    display: block;
}
.idx_h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 15px;
}
.b02_ttl {
    font-size: 24px;
}
.idx_btn {
    text-align: center;
}
.b02_img {
    width: 100%;
    max-width: 500px;
    margin: 40px auto 0;
}
.b02_video > span:nth-child(1) {
    font-size: 14px;
    width: 130px;
}
.b02_btn {
    width: 50px;
    height: 50px;
}
.b02_video {
    left: 0;
}
.box03 {
    padding: 40px 0;
}
.b03_row {
    padding: 0 0 0 30px;
    display: block;
}
.b03_col {
    width: 100%;
}
.b03_row:before {
    left: 0;
    transform: none;
}
.b03_col:nth-child(1) {
    text-align: left;
}
.b03_col:not(:last-child) {
    margin-bottom: 20px;
}
.b03_item:before {
    left: auto;
    right: 100%;
    width: 30px;
}
.b03_item:after {
    left: auto;
    right: calc(100% + 15px);
}
.b03_itm_ttl:after, .b03_col:nth-child(2) .b03_itm_ttl:after {
    left: auto;
    right: calc(100% + 23px);
}
.b03_item {
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.b03_itm_ttl {
    font-size: 20px;
    margin-bottom: 5px;
}
.box04, .box05, .box06 {
    padding: 40px 0;
}
.b04_tab_item {
    width: calc(25% - 10px);
    padding: 10px;
}
.b04_tab {
    margin-bottom: 20px;
  flex-wrap: wrap;
}
.box06 .container {
    display: block;
}
.b06_left {
    width: 100%;
    border: none;
    padding: 0;
    margin-bottom: 30px;
}
.b06_btn {
    position: relative;
    right: 0!important;
    top: 0;
    text-align: center;
}
.b06_right {
    width: 100%;
}
#footer {
    padding: 40px 0 0;
}
.f_main {
    flex-wrap: wrap;
}
.f_mod {
    width: calc(50% - 15px);
    margin-bottom: 30px;
}
.f_mod_ttl {
    font-size: 16px;
    margin-bottom: 10px;
}
.f_menu {
    height: 100px;
}
.f_menu li:before {
    top: 9px;
}
.f_social li {
    margin-bottom: 12px;
}
.copyright {
    font-size: 12px;
    padding: 20px 0;
}
}
@media screen and (max-width: 640px) {
.b06_news_main {
    padding: 15px 20px;
}
.b06_news_ttl {
    font-size: 15px;
}
.b06_news_txt {
    font-size: 14px;
}
.b06_news_img {
    width: 50%;
}
}
@media screen and (max-width: 480px) {
.f_mod {
    width: 100%;
}
}
@media screen and (max-width: 425px) {
.idx_main_txt {
    font-size: 6vw;
}
.idx_main_note {
    margin-bottom: 30px;
    width: 160px;
    font-size: 12px;
}
.idx_h2 {
    font-size: 22px;
}
.b06_video_item {
    width: 100%;
}
.b06_news_item a {
    display: block;
}
.b06_news_img {
    width: 100%;
}
.copyright {
    font-size: 10px;
}
.b04_tab_item {
    width: calc(50% - 10px);
    margin-bottom: 20px;
}
.b04_tab {
    margin: 0;
}
  .b04_tab_item:after {
    display: none;
  }
.b03_item {
    padding: 20px 10px;
}
.b03_row {
    padding-left: 20px;
}
.b03_item:before {
    width: 20px;
}
.b03_col:nth-child(2) .b03_item:after {
    right: calc(100% + 8px);
    left: auto;
    width: 20px;
    height: 20px;
}
.b03_itm_ttl:after, .b03_col:nth-child(2) .b03_itm_ttl:after {
    left: auto;
    right: calc(100% + 13px);
}
.b03_list li {
    font-size: 12px;
}
.b03_list li:nth-child(1) {
    padding: 15px 10px;
    width: 60%;
}
}