@charset "UTF-8";

/* ===================================================================
CSS information

 File Name  : common.css
 Style Info : 見出し、ボタン、表など繰り返し使うパーツのスタイルを定義
=================================================================== */

html {
  overflow-y: scroll;
  line-height: 1;
  font-size: 62.5%;
}
body {
  background: #fff;
  color: #000;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  letter-spacing: 0.05em;
  font-weight:500;
}
  @media screen and (max-width: 899px) {
    body {
      font-size: 3.73vw;
    }
  }

/*----------------------------------------------------
  link要素
--------------------------------------------------- */
a {
  transition: all 0.2s ease-in-out 0s;
}
a:link {
  color: #395e9f;
}
a:visited {
  color: #395e9f;
}
a:hover {
  text-decoration: none;
  color: #395e9f;
}
a:active {
  color: #395e9f;
}
:focus-ring {
  outline: dotted 1px #F6AB00;
}
:-moz-focusring {
  outline: dotted 1px #F6AB00;
}

/*----------------------------------------------------
  img要素
--------------------------------------------------- */
img {
  line-height: 1;
  /*font-size: 0;*/
  vertical-align: top;
  height: auto;
  max-width: 100%;
  transition: all 0.2s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*----------------------------------------------------
  見出し要素
--------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  line-height: 1.5;
  font-weight: 700;
}

/*----------------------------------------------------
 フォントファミリー
--------------------------------------------------- */
.ff01 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*----------------------------------------------------
  スクロールバー
--------------------------------------------------- */

/*スクロールバー全体*/
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.5);
  border-radius: 10px;
  box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
  @media screen and (max-width: 899px) {
    ::-webkit-scrollbar {
        width: 5px;
    }
    ::-webkit-scrollbar-track {
      border-radius: 10px;
      box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
    }
    ::-webkit-scrollbar-thumb {
      background-color: rgba(0,0,0,0.5);
      border-radius: 10px;
      box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
    }
  }

/*----------------------------------------------------
 共通カラム
--------------------------------------------------- */
#page {
  overflow: hidden;
}
#contents {
  line-height: 1.8;
  padding-bottom: 120px;
}
.home #contents {
  padding-bottom: 0;
}
#contents a:hover img{
  opacity: 0.70;
}
.wrapper {
  position: relative;
  z-index: 5;
  max-width: 1360px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.inner {
  position: relative;
  z-index: 5;
  max-width: 1140px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
  @media screen and (max-width: 899px) {
    html, body, #page {
      min-width:100%!important;
      max-width:100%!important;
      width:100%!important;
    }
    #contents {
      padding-bottom: 13.33vw;
    }
    .home #contents {
      padding-bottom: 0;
    }
    .wrapper, .inner {
      width: 100%;
      max-width: 100%;
      padding-left: 5vw;
      padding-right: 5vw;
    }
  }

/*----------------------------------------------------
	ヘッダー
----------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 96px;
  transition: all 0.3s ease-in-out 0s;
  background: rgba(255,255,255,0.9);
}
.hd_logo {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  width: 490px;
  height: 100%;
}
.hd_logo span {
  position: absolute;
  left: 18px;
  bottom: 55px;
}
.hd_logo span img {
  width: 154px;
  height: auto;
}
.hd_logo small {
  position: absolute;
  left: 68px;
  bottom: 12px;
  font-size: 1.4rem;
  background: #2A559E;
  color: #fff;
  display: block;
  width: 98px;
  line-height: 32px;
  border-radius: 5px;
  text-align: center;
  transition: all 0.2s ease-in-out 0s;
}
.hd_logo b {
  position: absolute;
  left: 175px;
  bottom: 12px;
}
.hd_logo b img {
  width: 330px;
}

.home #header {
  height: 136px;
  background: none;
}
.home #header .hd_logo {
  width: 540px;
}
.home .hd_logo span img {
  width: 188px;
  height: auto;
}
.home #header .hd_logo small {
  left: 72px;
  font-size: 1.7rem;
  width: 108px;
}
.home #header .hd_logo b {
  left: 190px;
}
.home #header .hd_logo b img {
  width: 346px;
}

#header.hd_fix {
  height: 96px;
  background: rgba(255,255,255,0.9);
}
#header.hd_fix .hd_logo {
  width: 490px;
}
#header.hd_fix .hd_logo span img {
  width: 154px;
  height: auto;
}
#header.hd_fix .hd_logo small {
  left: 68px;
  font-size: 1.4rem;
  width: 98px;
}
#header.hd_fix .hd_logo b {
  left: 175px;
}
#header.hd_fix .hd_logo b img {
  width: 330px;
}
#header.hd_fix .hd_inner {
  background: none;
}
  @media screen and (max-width: 1139px) {
    #header {
      height: 90px!important;
      background: rgba(255,255,255,0.9)!important;
    }
    .hd_logo {
      width: 300px!important;
    }
    .hd_logo span {
      bottom: 55px!important;
    }
    .hd_logo span img {
      width: 142px!important;
      height: auto;
    }
    .hd_logo small {
      left: 22px!important;
      font-size: 1.4rem!important;
      width: 98px!important;
    }
    .hd_logo b {
      left: 130px!important;
      bottom: 10px!important;
    }
    .hd_logo b img {
      width: 170px!important;
    }
    .hd_inner {
      background: none!important;
    }
  }
  @media screen and (max-width: 899px) {
    #header {
      height: 15.33vw!important;
      background: rgba(255,255,255,0.95);
    }
    .hd_logo {
      width: 70vw!important;
    }
    .hd_logo span {
      left: 3vw;
      bottom: 8.2vw!important;
    }
    .hd_logo span img {
      width: 23.33vw!important;
    }
    .hd_logo small {
      left: 3.33vw!important;
      bottom: 2.5vw;
      font-size: 2.8vw!important;
      width: 20vw!important;
      line-height: 5.4vw;
    }
    .hd_logo b {
      left: 24.8vw!important;
      bottom: 2.66vw!important;
    }
    .hd_logo b img {
      width: 42vw!important;
    }
  }

.hd_inner {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 20px;
  z-index: 5;
  width: 100%;
  height: 58px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.2s ease-in-out 0s;
}
.home .hd_inner {
  background: rgba(255,255,255,0.9);
}
.hd_menu {
  margin-right: 3%;
}
.hd_menu li {
  margin-left: 28px;
}
.hd_menu li a {
  position: relative;
  display: block;
  text-decoration: none;
  font-weight: 600;
  padding-left: 18px;
}
.hd_menu li a::after {
  position: absolute;
  left: 0;
  top: calc(50% - 5px);
  z-index: 5;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F8E000;
}
.hd_menu li a span {
  position: relative;
  display: inline-block;
}
.hd_menu li a span::before {
  position: absolute;
  left: 0;
  bottom: -4px;
  z-index: 5;
  content: "";
  width: 0;
  height: 1px;
  background: #2A559E;
  transition: all 0.3s ease-in-out 0s;
}
.hd_menu li a:hover span::before {
  width: 100%;
}
  @media screen and (max-width: 1139px) {
    .hd_menu li {
      margin-left: 18px;
    }
  }
  @media screen and (max-width: 899px) {
    .hd_inner {
      display: none;
    }
  }

.hd_btn a {
  position: relative;
  display: block;
  width: 130px;
  line-height: 42px;
  overflow: hidden;
  border-radius: 21px;
  text-align: center;
  color: #fff;
  background: #D69A00;
  text-decoration: none;
}
.hd_btn a::before {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 10;
  content: "";
  width: 16px;
  height: 1px;
  background: #fff;
}
.hd_btn a::after {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  content: "";
  width: 0;
  height: 100%;
  background: #D69A00;
  filter: brightness(1.1);
  transition: all 0.3s ease-in-out 0s;
}
.hd_btn a:hover::after {
  width: 100%;
}
.hd_btn span {
  position: relative;
  display: inline-block;
  z-index: 15;
}
  @media screen and (max-width: 899px) {
    .hd_btn {
      display: none;
    }
  }

/*----------------------------------------------------
	パンくずリスト
----------------------------------------------------*/
#crumbs {
  padding: 20px 0 60px;
}
.aioseo-breadcrumbs > span {
  display: inline-block;
  font-size: 1.4rem;
  margin: 0 10px 0 0;
  padding: 0;
}
.aioseo-breadcrumbs > span a {
  display: inline-block;
  text-decoration: none;
  color: #000;
}
.aioseo-breadcrumbs > span a:hover {
  color: #2A559E
}
.aioseo-breadcrumb:first-child a {
  padding-left: 20px;
  background: url("../img/ico_home01.svg") 0 center no-repeat;
  background-size: 14px auto;
}
  @media screen and (max-width: 899px) {
    #crumbs {
      padding: 3vw 0 8vw;
    }
    .aioseo-breadcrumbs > span {
      font-size: 3vw;
      margin: 0 1.33vw 0 0;
    }
    .aioseo-breadcrumb:first-child a {
      padding-left: 4.6vw;
      background-size: 3.33vw auto;
    }
  }


/*----------------------------------------------------
	フッター
----------------------------------------------------*/
#footer {
  position: relative;
  z-index: 10;
}
.footer__wrapper {
  border-top: solid 4px #18499e;
  margin-top: -6px;
}
.footer__img {
  /*background-image: url(../img/footer.png);*/
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  /*padding: 130px 0px;*/
  /*padding: 9% 0px;*/
}
.footer__img img {
  width: 100%;
  height: auto;
}
.footer__content {
  max-width: 1030px;
  width: 90%;
  margin: 60px auto 85px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__left-top {
  display: flex;
  align-items: center;
}
.footer__logo {
  margin-right: 15px;
}
.footer__sns {
  display: flex;
}
.footer__sns a {
  margin: 0px 15px;
}
.footer__left-bottom {
  font-size: 12px;
  color: #18499e;
  margin-top: 20px;
  line-height: 1.5;
}
.footer__right {
  border: solid 1px #cdcdcd;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.4;
}
.footer__right a {
  font-size: 13px;
  font-weight: 600;
  color: #18499e;
  display: inline-block;
  width: 235px;
  padding: 10px 0px;
  position: relative;
  text-decoration: none;
}
.footer__right a::after {
  content: '';
  position: absolute;
  top: 40%;
  right: 15px;
  width: 10px;
  height: 7px;
  border-top: none;
  border-bottom: 2px solid #e2b926;
  border-right: 3px solid #e2b926;
  transform: skew(40deg);
  transition: all .3s;
}
.footer__right a:hover:after {
  right: 5px;
}
  @media screen and (max-width:899px) {
    .footer__content {
      flex-direction: column;
    }
    .footer__sns a {
      margin: 0px 5px;
    }
    .footer__right {
      margin-top: 45px;
    }
    .footer__img {
      /*padding: 105px 0px;*/
    }
  }
  @media screen and (max-width:425px) {
    .footer__left-top {
      flex-direction: column;
    }
    .footer__sns {
      margin-top: 20px;
    }
    .footer__img {
      /*padding: 80px 0px;*/
    }
  }

.copyright {
  display: block;
  text-align: center;
  font-size: 1.3rem;
  padding: 10px;
  color: #18499e;
}

/*----------------------------------------------------
  共通タイトル
--------------------------------------------------- */
#lowerVisual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 3.8rem;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  width: 100%;
  height: 280px;
  margin-top: 96px;
  background: url("../img/searoute_bg.jpg") top center no-repeat fixed;
  background-size: 100% auto;
}
.page_ttl small {
  display: block;
  color: #f4e000;
  font-size: 2rem;
}
  @media screen and (max-width: 899px) {
    #lowerVisual {
      font-size: 6vw;
      width: 100%;
      height: 40vw;
      margin-top: 15.33vw;
      background: url("../img/searoute_bg.jpg") top center no-repeat;
      background-size: 100% auto;
    }
    .page_ttl small {
      font-size: 4vw;
    }
  }

.sub_ttl01 {
  text-align: center;
  margin-bottom: 50px;
}
.sub_ttl01 span {
  display: block;
  color: #355599;
  font-size: 3.4rem;
}
.sub_ttl01 small {
  display: block;
  color: #f4e000;
  margin-top: 8px;
  font-size: 2.2rem;
}
  @media screen and (max-width: 899px) {
    .sub_ttl01 {
      margin-bottom: 6.66vw;
    }
    .sub_ttl01 span {
      font-size: 5.33vw;
    }
    .sub_ttl01 small {
      margin-top: 1.33vw;
      font-size: 4vw;
    }
  }

.sub_ttl02 {
  position: relative;
  font-size: 2.6rem;
  margin-bottom: 40px;
  padding-left: 8%;
  font-weight: 500;
}
.sub_ttl02::after {
  position: absolute;
  left: 0;
  top: 22px;
  z-index: 5;
  content: "";
  width: 6.3%;
  height: 1px;
  background: #395e9f;
}
  @media screen and (max-width: 899px) {
    .sub_ttl02 {
      font-size: 4.26vw;
      margin-bottom: 5.33vw;
      padding-left: 8vw;
    }
    .sub_ttl02::after {
      top: 3.2vw;
      width: 6vw;
    }
  }

.en_ttl {
  font-size: 10.5rem;
  line-height: 1;
  margin-bottom: 40px;
  color: #355599;
  letter-spacing: 0.075em;
}
  @media screen and (max-width: 899px) {
    .en_ttl {
      font-size: 11.33vw;
      margin-bottom: 5.33vw;
    }
  }

/*----------------------------------------------------
  共通ボタン
--------------------------------------------------- */
.pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 80;
  display: none;
}
.pagetop a:hover {
  opacity: 0.7;
}
  @media screen and (max-width: 899px) {
    .pagetop {
      right: 2.66vw;
      bottom: 4vw;
    }
    .pagetop img {
      width: 13.33vw;
      height: auto;
    }
  }

.btn01 a {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  min-width: 150px;
  padding: 0 20px;
  line-height: 42px;
  overflow: hidden;
  border-radius: 21px;
  text-align: center;
  color: #fff;
  background: #D69A00;
}
.btn01 a::before {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 10;
  content: "";
  width: 16px;
  height: 1px;
  background: #fff;
}
.btn01 a::after {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  content: "";
  width: 0;
  height: 100%;
  background: #D69A00;
  filter: brightness(1.1);
  transition: all 0.3s ease-in-out 0s;
}
.btn01 a:hover::after {
  width: 100%;
}
.btn01 span {
  position: relative;
  display: inline-block;
  z-index: 15;
}
  @media screen and (max-width: 899px) {
    .btn01 a {
      min-width: 46vw;
      padding: 0 4vw;
      line-height: 11vw;
      border-radius: 5.5vw;
    }
    .btn01 a::before {
      width: 5.33vw;
    }
    .btn01 a::after {
      display: none;
    }
  }

/*----------------------------------------------------
  共通メニュー
--------------------------------------------------- */

  /*スマホナビ*/
  @media screen and (max-width: 899px) {
    /*transition*/
    .trs {
      -webkit-transition: all .1s ease;
      -moz-transition: all .1s ease;
      -ms-transition: all .1s ease;
      -o-transition: all .1s ease;
      transition: all .1s ease;
    }
    /*trp*/
    .trp {
      -webkit-transition: opacity .1s ease;
      -moz-transition: opacity .1s ease;
      -ms-transition: opacity .1s ease;
      -o-transition: opacity .1s ease;
      transition: opacity .1s ease;
      opacity: 1;
      filter: alpha(opacity=100);
    }
    .trp:hover {
      opacity: .6;
      filter: alpha(opacity=60);
    }
    /* trs-dr */
    .trs-dr02 {
      -webkit-transition-duration: .2s;
      -moz-transition-duration: .2s;
      -ms-transition-duration: .2s;
      -o-transition-duration: .2s;
      transition-duration: .2s;
    }
    .trs-dr03 {
      -webkit-transition-duration: .3s;
      -moz-transition-duration: .3s;
      -ms-transition-duration: .3s;
      -o-transition-duration: .3s;
      transition-duration: .3s;
    }
    .trs-dr05 {
      -webkit-transition-duration: .5s;
      -moz-transition-duration: .5s;
      -ms-transition-duration: .5s;
      -o-transition-duration: .5s;
      transition-duration: .5s;
    }
    .trs-dr06 {
      -webkit-transition-duration: .6s;
      -moz-transition-duration: .6s;
      -ms-transition-duration: .6s;
      -o-transition-duration: .6s;
      transition-duration: .6s;
    }
    .trs-dr08 {
      -webkit-transition-duration: .8s;
      -moz-transition-duration: .8s;
      -ms-transition-duration: .8s;
      -o-transition-duration: .8s;
      transition-duration: .8s;
    }
    .trs-dr12 {
      -webkit-transition-duration: 1.2s;
      -moz-transition-duration: 1.2s;
      -ms-transition-duration: 1.2s;
      -o-transition-duration: 1.2s;
      transition-duration: 1.2s;
    }
    /* trs-tf */
    .trs-tfCb {
      -webkit-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      -moz-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      -ms-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      -o-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      transition-timing-function: cubic-bezier(0, .96, .4, .99);
    }
    .menuTrigger {
      position: fixed;
      z-index: 150;
      top: 0;
      right: 0;
      display: block;
      width: 15.33vw;
      height: 15.33vw;
      cursor: pointer;
      transition: .3s;
      background: #2A559E;
    }
    .menuTrigger.open {
      position: fixed;
      top: 0;
    }
    .menuIcon_line {
      position: absolute;
      left: calc(50% - 4.5vw);
      width: 9vw;
      height: 2px;
      background: #fff;
    }
    .menuIcon_line:nth-of-type(1) {
      top: calc(50% - 20px);
    }
    .menuIcon_line:nth-of-type(2) {
      top: calc(50% - 1px);
    }
    .menuIcon_line:nth-of-type(3) {
      top: calc(50% + 18px);
    }
    /* open */
    .menuTrigger.open .menuIcon_line {
      background: #fff;
    }
    .menuTrigger.open .menuIcon_line:nth-of-type(1) {
      top: 50%;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    .menuTrigger.open .menuIcon_line:nth-of-type(2) {
      opacity: 0;
    }
    .menuTrigger.open .menuIcon_line:nth-of-type(3) {
      top: 50%;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }
    #hbNav {
      box-sizing: border-box;
      position: fixed;
      top: 0;
      left: 0;
      display: none;
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 15.33vw 0 0 0;
      z-index: 90;
      overflow-y: visible;
      overflow-x: hidden;
      -webkit-overflow-scrolling: auto;
      overflow-scrolling: auto;
    }
    .hb_inner {
      display: table;
      width: 100%;
      height: 100%;
      padding: 8vw 5vw;
      background: rgba(255,255,255,0.95);
    }
    .hb_menu li {
      border-bottom: solid 1px #ddd;
    }
    .hb_menu li a {
      position: relative;
      display: block;
      padding: 4.4vw 4.4vw 4.4vw 6vw;
      text-decoration: none;
      font-weight: 600;
      font-size: 4.26vw;
    }
    .hb_menu li a::after {
      position: absolute;
      left: 0;
      top: calc(50% - 1.7vw);
      z-index: 5;
      content: "";
      width: 3.4vw;
      height: 3.4vw;
      border-radius: 50%;
      background: #F8E000;
    }
    .hb_btn {
      display: block;
      width: 50vw;
      margin: 9.33vw auto 0 auto;
    }
    .hb_btn a {
      position: relative;
      display: block;
      width: 100%;
      font-size: 4.26vw;
      line-height: 12vw;
      overflow: hidden;
      border-radius: 6vw;
      text-align: center;
      color: #fff;
      background: #D69A00;
      text-decoration: none;
    }
    .hb_btn a::before {
      position: absolute;
      left: 0;
      top: 50%;
      z-index: 10;
      content: "";
      width: 5.33vw;
      height: 1px;
      background: #fff;
    }
  }
  @media screen and (max-width: 559px) {
    .menuIcon_line:nth-of-type(1) {
      top: calc(50% - 14px);
    }
    .menuIcon_line:nth-of-type(3) {
      top: calc(50% + 12px);
    }
  }
