@charset "utf-8";



/* //////////////////////////////////
基本設定メモ
color:
font-family:


///////////////////////////////////*/

@media screen and (min-width: 1051px) {
  .sp__contact, .sp__contact_support, .sp__tel {
    display: none;
  }
}

/* //////////////////////////////////

汎用クラス

///////////////////////////////////*/

@-ms-viewport {
  width: auto;
}
html {
  -ms-overflow-style: scrollbar;
}
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  width: 100%;
  min-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
.cmn__inner {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
}

.cmn__inner_800 {
  width: 95%;
  max-width: 800px;
  margin: 0 auto;
}
img.border {
  border: solid #bbbbbb 1px;
}
/* レスポンシブ関連 */
.pc__block {
  display: block;
}
.pc__inline {
  display: inline;
}
.tb__block {
  display: none;
}
.tb__inline {
  display: none;
}
.sp__block {
  display: none;
}
.sp__inline {
  display: none;
}
.pc-tb__block {
  display: block;
}
.pc-tb__inline {
  display: inline;
}
.tb-sp__block {
  display: none;
}
.tb-sp__inline {
  display: none;
}
.pc-sp__block {
  display: block;
}
.pc-sp__inline {
  display: inline;
}


.cmn__btn {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #ffffff;
  background: #3a8798;
  margin: 15px 0 0 0;
  padding: 10px 10px 10px 40px;
  border: 2px solid #ffffff;
}
.cmn__btn:hover {
  opacity: .8;
}
/* //////////////////////////////////

SPメニュー

///////////////////////////////////*/
.btn__sp__menu, .sp__menu {
  display: none;
}
.btn__sp__menu {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 10;
}
.fixedBody {
  position: fixed;
  overflow: hidden!important;
}
.sp__menu {
  position: fixed;
  top: 0;
  right: -300px;
  z-index: 6;
  background: #3a8798;
  width: 300px;
  height: 100vh;
  padding: 70px 20px;
  transition: all .5s;
}
.sp__menu.active {
  right: 0;
}
.sp__menu span {
  font-size: .8em;
}
.sp__menu a {
  display: block;
  position: relative;
  line-height: 1.5;
  text-decoration: none;
  color: #ffffff;
  padding: 10px 5px ;
}
.sp__menu a:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: rotate(-45deg);
  width: 10px;
  height: 10px;
  margin: -6px 0 0 0;
  border-right: solid 2px #ffffff;
  border-bottom: solid 2px #ffffff;
}
.sp__menu li {
  border-bottom: solid 1px #ffffff;
}
.sp__menu li.bold__border {
  margin: 1px 0 0 0;
  border-top: solid 1px #ffffff;
}
.sp__menu li.menu__border {
  border-top: solid 1px #ffffff;
}
.sp__menu li.menu__child {
  margin: 0 0 0 20px;
  border-bottom: solid 1px rgba(255,255,255,.6);
}
.sp__menu li.menu__child.last-child {
  border-bottom: none;
}
/*
ハンバーガーメニュー関連 
詳細は下記URLで確認
https://www.nxworld.net/tips/12-css-hamburger-menu-active-effect.html
*/
.menu-trigger, .menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  transition: all .4s;
}
.menu-trigger {
  position: relative;
  width: 38px;
  height: 30px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  background-color: #3a8798;
  width: 100%;
  height: 4px;
  border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 13px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
/*ハンバーガーアニメーション*/
.menu-trigger.active span:nth-of-type(1) {
          transform: translateY(14px) rotate(-45deg);

  -webkit-transform: translateY(14px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
          transform: translateY(-12px) rotate(45deg);

  -webkit-transform: translateY(-12px) rotate(45deg);
}


/* //////////////////////////////////

ヘッダー

///////////////////////////////////*/

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgba(255,255,255,.7);
  width: 100%;
  height: 80px;
}
header .cmn__inner {
  max-width: 1200px;
}
header figure {
  float: left;
}
header figure a {
  display: block;
  padding: 15px 0;
}
header figure a:hover {
  opacity: .8;
}
header figure a img {
  width: 93px;
}
header nav {
  float: right;
  overflow: hidden;
}
header nav li {
  float: left;
}
header nav > ul > li > a {
  display: block;
  position: relative;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  color: #333333;
  padding: 32px 25px;
}
header nav > ul > li > a:after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 15%;
  width: 0;
  border-top: 3px solid #3a8798;
  transition: all .3s;
}
header nav > ul > li > a.current:after {
  width: 70%;
}
header nav > ul > li > a:hover:after {
  width: 70%;
}
header .btn__contact {
  display: block;
  float: right;
  width: 180px;
  margin: 15px 0 15px 20px;
  transition: all .3s;
}
header .btn__contact:hover {
  opacity: 0;
}
header .btn__contact img {
  width: 100%;
}
.menu__drop {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  text-align: center;
  background: #4e5559;
  width: 100%;
  padding: 20px 0;
}
.menu__drop .menu__drop_inner {
  text-align: center;
  width: 1200px;
  margin: 0 auto;
}
.menu__drop .menu__drop_inner ul {
  text-align: center;
  width: 940px;
  margin: 0 auto;
  overflow: hidden;
}
.menu__drop li {
  display: inline-block;
  margin: 0 20px 0 0;
  padding: 0 20px 0 40px;
}
.menu__drop a {
  display: block;
  position: relative;
  font-size: 15px;
  text-decoration: none;
  color: #ffffff;
}
.menu__drop a:before {
  display: block;
  content: "";
  position: absolute;
  top: 3px;
  left: -17px;
  transform: rotate(-45deg);
  width: 6px;
  height: 6px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}
header .btn__contact:hover {
  opacity: .8;
}


/* //////////////////////////////////

汎用見出し　

///////////////////////////////////*/

.h_level_01 {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 36px;
  font-weight: 700;
  color: #3a8798;
  padding: 0 0 40px;
}
.h_level_02 {
  position: relative;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  padding: 0 0 75px;
}
.h_level_02:after {
  display: block;
  content: "";
  position: absolute;
  bottom: 40px;
  left: 50%;
  width: 60px;
  height: 10px;
  margin: 0 0 0 -30px;
  border-top: solid 4px #3a8798;
}
.h_level_03 {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  color: #1a1a1a;
}


/* //////////////////////////////////

共通コンタクト

///////////////////////////////////*/

.cmn__contact {
  background: url(../_img/contact_bg.jpg) no-repeat center center / cover;
  width: 100%;
  height: 300px;
  padding: 40px 0 60px;
  box-sizing: border-box;
}
.cmn__contact p {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #ffffff;
  margin: 0 0 30px;
}
.cmn__contact-btn {
  display: block;
  position: relative;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 30px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  text-indent: 20px;
  color: #4e5559;
  background: url(../_img/ic_mail_gr.png) no-repeat 30px center / 50px auto #ffffff;
  width: 600px;
  margin: 0 auto;
  padding: 25px 0;
  border-radius: 5px;
  box-sizing: border-box;
}
.cmn__contact-btn:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: rotate(-45deg);
  width: 15px;
  height: 15px;
  margin: -10px 0 0 0;
  border-right: 4px solid #3a8798;
  border-bottom: 4px solid #3a8798;
  transition: all .3s;
}
.cmn__contact-btn:hover {
  opacity: .8;
}
.cmn__contact-btn:hover:after {
  right: 20px;
}

/* //////////////////////////////////

フッター

///////////////////////////////////*/
.btn__go-top {
  position: fixed;
  right: 0;
  bottom: 100px;
  transform: rotate(90deg);
  cursor: pointer;
  transition: all .3s;
}
.btn__go-top:hover {
  bottom: 120px;
}
.btn__go-top:before {
  display: block;
  content: "";
  position: absolute;
  top: 7px;
  left: -40px;
  width: 35px;
  height: 2px;
  border-top: 2px #333333 solid;
}
.btn__go-top:after {
  display: block;
  content: "";
  position: absolute;
  top: 4px;
  left: -40px;
  transform: rotate(-45deg);
  width: 10px;
  height: 2px;
  border-top: 2px #333333 solid;
}

footer {
  color: #ffffff;
  background: #4e5559;
  padding: 55px 0 30px;
}
footer .cmn__inner {
  max-width: 1180px;
}
footer a {
  text-decoration: none;
  color: #ffffff;
}
.txt__copy {
  text-align: right;
}
.box__footer {
  padding: 0 0 70px;
  overflow: hidden;
}
.box__footer .left__footer {
  position: relative;
  top: 9px;
  float: left;
}
.box__footer .left__footer figure {
  display: inline-block;
}
.box__footer .left__footer figure img {
  width: 150px;
}
.box__footer .left__footer p {
  display: inline-block;
  position: relative;
  top: -9px;
  left: 30px;
  line-height: 1.5;
}
.box__footer p .text__small {
  display: block;
  font-size: 12px;
  line-height: 1.2;
  padding-bottom: 8px;
}
.box__footer .right__footer {
  float: right;
  margin: 30px 0 0 0;
}
.box__footer .right__footer ul {
  text-align: right;
}
.box__footer .right__footer li {
  display: inline-block;
  margin: 0 0 20px;
  border-right: #ffffff solid 1px;
}
.box__footer .right__footer li a {
  display: inline-block;
  padding: 0 20px;
}
.box__footer .right__footer li a:hover {
  text-decoration: underline;
}
.box__footer .right__footer li:nth-child(4) {
  border-right: none;
}
.box__footer .right__footer li:last-child {
  border-right: none;
}


/* //////////////////////////////////

下層アイキャッチ

///////////////////////////////////*/

.sec__eye_catch {
  position: relative;
  width: 100%;
  height: 300px;
  border-bottom: #3a8798 solid 5px;
}
.sec__eye_catch h1 {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  padding: 170px 0;
}
.sec__eye_catch:before {
  display: block;
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50% ;
  z-index: 3;
  background: #ffffff;
  width: 2px;
  height: 40px;
  margin: 0 0 0 -1px;
}
.sec__eye_catch:after {
  display: block;
  content: "";
  position: absolute;
  bottom: -45px;
  left: 50% ;
  z-index: 3;
  background: #3a8798;
  width: 2px;
  height: 40px;
  margin: 0 0 0 -1px;
}

/* //////////////////////////////////

パンくず

///////////////////////////////////*/

.sec__breadclumb {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 0;
}
.sec__breadclumb li {
  display: inline-block;
  position: relative;
  padding: 0 20px 0 0 ;
}
.sec__breadclumb li:after {
  display: block;
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  transform: rotate(-45deg);
  width: 7px;
  height: 7px;
  border-right: solid 1px #333333;
  border-bottom: solid 1px #333333;
}
.sec__breadclumb li:last-child:after {
  display: none;
}
.sec__breadclumb li a {
  text-decoration: underline;
  color: #3a8798;
}
.sec__breadclumb li a:hover {
  text-decoration: none;
}
