@charset "UTF-8";
@import url("reset.min.css");

@font-face {
  font-family: "LogoFont";
  src: url(../font/myfont.ttf);
}

html {
  scroll-behavior: smooth;
  font-size: 60%;
  /*pxだと10px;*/
}

@media screen and (min-width: 1196px) and (max-width: 1300px) {
  html {
    font-size: 56.7%;
  }
}

body {
  width: 100%;
  height: auto;
  background: #fff;
  color: #0d0c0c;
  font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo,
    "ＭＳ Ｐゴシック", "MS PGothic";
  position: relative;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  display: block;
  color: #000;
  text-decoration-line: none;
}

a:hover {
  opacity: 0.9;
  transition-duration: 0.8s;
}

a img:hover {
  opacity: 0.9;
  transition-duration: 0.8s;
}

a.anchor {
  display: block;
  margin-top: -80px;
  padding-top: 80px;
}

@media screen and (max-width: 1195px) {
  a.anchor {
    margin-top: -40px;
    padding-top: 40px;
  }
}

.underline {
  border-bottom: 3px solid #000;
  padding-bottom: 1rem;
}

.pc-none {
  display: none;
}

.sp-none {
  display: block;
}

@media screen and (max-width: 1195px) {
  .pc-none {
    display: block;
  }

  .sp-none {
    display: none;
  }

  a.anchor {
    margin-top: -40px;
    padding-top: 40px;
  }
}

.clear {
  clear: both;
}

.max-img {
  width: 100%;
}

section {
  display: block;
}

/*ヘッダー
-------------------------------------*/
#header {
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 3;
}

#header .header-inner {
  width: 100%;
  height: 68px;
  padding: 0 3%;
  display: flex;
  align-items: center;
  transition-duration: 0.5s;
  box-sizing: border-box;
}

#header.change .header-inner {}

@media screen and (max-width: 1195px) {
  #header .header-inner {
    height: 60px;
    padding: 0 2%;
    align-items: center;
  }

  #header.change .header-inner {
    height: 40px;
  }
}

@media screen and (max-width: 500px) {
  #header .header-inner {
    padding: 0 4%;
  }
}

/*ロゴ*/
#header .logo-area {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition-duration: 0.5s;
}

#header .logo-area img {
  width: 42.33px;
  height: 32px;
  margin-right: 10px;
}

#header .logo-area h1 {
  flex-basis: 190px;
  font-family: LogoFont;
  font-size: 1.4rem;
  white-space: nowrap;
}

#header.change h1 {}

@media screen and (max-width: 1195px) {
  #header .logo-area {
    width: auto;
    height: auto;
  }

  #header .logo-area img {
    width: 43px;
    height: auto;
  }

  #header .logo-area h1 {
    display: none;
  }
}

/*メインナビゲーション*/
#header nav {
  flex: 1;
}

#header nav ul {
  display: flex;
  justify-content: center;
}

#header nav li {
  margin: 0 1.5%;
  list-style: none;
}

#header nav li a {
  display: block;
  height: 48px;
  line-height: 48px;
  box-sizing: border-box;
  color: #191818;
  font-size: 1.45rem;
  text-align: center;
  white-space: nowrap;
  transition-duration: 0.5s;
}

@media screen and (max-width: 1195px) {
  #header nav li a {
    padding: 0;
    width: 60%;
    height: 40px;
    margin: 0 auto;
    font-size: 1.6rem;
    font-weight: 400;
    color: #0a286a;
  }
}

#header nav li a:hover,
#header nav li a.current {
  color: #fa6205;
}

@media screen and (max-width: 1195px) {
  #header nav {
    position: absolute;
    top: -100vh;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    transition: top 0.5s;
    z-index: 200;
    opacity: 0;
  }

  #header .open nav {
    top: 0;
    opacity: 1;
  }

  #header nav .inner {
    padding: 6vh 0;
  }

  #header nav .navlogo {
    text-align: center;
    margin-top: 10vh;
  }

  #header nav .navlogo img {
    width: 82.26px;
    height: 62.18px;
    padding-bottom: 2rem;
  }

  #header nav .navlogo h1 {
    font-size: 1.5rem;
    font-family: LogoFont;
  }

  #header nav .inner ul {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  #header nav .close_btn {
    width: 50px;
    margin: 5rem auto 0;
    text-align: center;
  }
}

/*ご相談・お問い合わせ*/
#header .contact-head {
  position: absolute;
  top: 0;
  right: 3%;
  width: 98px;
  height: 107px;
  line-height: 1.45;
  padding-top: 17px;
  background: #fa6205;
  color: #fff;
  text-align: center;
}

#header .contact-head img {
  display: block;
  width: 33.9px;
  height: 22.62px;
  margin: 0 auto 1.2rem;
}

#header .contact-head span {
  display: block;
  width: 90%;
  font-size: 1.4rem;
  margin: 0 auto;
}

@media screen and (max-width: 1195px) {
  #header .contact-head {
    width: 68px;
    height: 60px;
    right: auto;
    left: calc(4% + 48px);
    box-sizing: border-box;
  }

  #header .contact-head span {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  #header .contact-head {
    left: calc(6% + 48px);
  }
}

/*ハンバーガーボタン*/
@media screen and (min-width: 1196px) {

  /* PC時はMENUボタンを非表示 */
  .toggle_btn {
    display: none !important;
  }

  #navi {
    display: block !important;
  }
}

@media screen and (max-width: 1195px) {
  #header .toggle_btn {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 3;
  }

  #header.change .toggle_btn {
    width: 40px;
    height: 40px;
  }

  #header .toggle_btn span {
    display: block;
    position: absolute;
    right: 20px;
    width: 27px;
    height: 2px;
    background-color: #fa6205;
    border-radius: 4px;
    transition: all 0.5s;
  }

  #header.change .toggle_btn span {
    right: 11px;
  }

  #header .toggle_btn span:nth-child(1) {
    top: 24px;
  }

  #header.change .toggle_btn span:nth-child(1) {
    top: 14px;
  }

  #header .toggle_btn span:nth-child(2) {
    top: 30px;
    display: none;
  }

  #header.change .toggle_btn span:nth-child(2) {
    top: 20px;
  }

  #header .toggle_btn span:nth-child(3) {
    top: 36px;
  }

  #header.change .toggle_btn span:nth-child(3) {
    top: 26px;
  }

  #header .open .toggle_btn {
    z-index: 300;
    background-color: #fff;
  }

  #header .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
    top: 18px;
  }

  #header .open .toggle_btn span:nth-child(2) {
    opacity: 0;
    background: #98801c;
  }

  #header .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
    top: 38px;
  }

  #header #mask {
    display: none;
    transition: all 0.5s;
  }

  #header .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 0.8;
    z-index: 2;
    cursor: pointer;
  }
}



/*コンテンツ
-------------------------------------*/
.wrap {
  padding-top: 68px;
}

@media screen and (max-width: 1195px) {
  .wrap {
    padding-top: 60px;
  }
}

/*横幅画面一杯のコンテンツ*/
.contents-full {
  position: relative;
  width: 100%;
}

/*横幅1460pxのコンテンツ*/
.contents {
  width: 90%;
  max-width: 1460px;
  margin: 0 auto;
}

@media screen and (max-width: 1470px) {
  .contents {
    max-width: 90%;
  }
}

@media screen and (max-width: 1195px) {
  .contents {
    max-width: 85%;
  }
}

/*ページタイトル
-------------------------------------*/
h1.page-title {
  display: block;
  padding-left: 2.5rem;
  margin-bottom: 70px;
  margin-top: 80px;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  line-height: 0.8;
  border-left: 11px solid #fa6205;
}

h1.page-title span {
  margin-bottom: 40px;
  font-family: "Avenir";
  font-size: 1.8rem;
  font-weight: 600;
  color: #fa6205;
}

@media screen and (max-width: 1195px) {
  h1.page-title {
    padding-left: 1.1rem;
    margin-bottom: 35px;
    margin-top: 25px;
    font-size: 2.1rem;
    line-height: 1.5;
    border-left: 7px solid #fa6205;
  }

  h1.page-title span {}
}

/*コンテンツの章タイトル
-------------------------------------*/
h1.contents-title {
  position: relative;
  display: block;
  height: 42px;
  font-size: 2.6rem;
  letter-spacing: 0.3rem;
  color: #3b3b3b;
  margin-bottom: 58px;
}

h1.contents-title:after {
  position: absolute;
  bottom: -9px;
  left: 0;
  content: "";
  width: 220px;
  height: 10px;
  background-image: url(../img/common/h1-line.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 1195px) {
  h1.contents-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    height: 38px;
  }

  h1.contents-title:after {
    width: 157px;
    height: 9.37px;
    bottom: 0;
  }
}


/*ページトップへ戻るボタン
-------------------------------------*/
.contact-area #pagetop img {
  position: absolute;
  content: "";
  top: -70px;
  right: 5%;
  width: 50px;
  height: 43.22px;
}

@media screen and (max-width: 1195px) {
  .contact-area #pagetop img {
    width: 40px;
    height: 34.58px;
    top: -50px;
  }
}

/*コンタクトエリア
-------------------------------------*/
.contact-area {
  position: relative;
  width: 100%;
  padding: 50px 0;
  background: #fa6205;
  color: #fff;
}

.contact-area h1 {
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  text-align: center;
  letter-spacing: 0.5rem;
  margin: 0;
}

.contact-area h2 {
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
  margin-top: 1rem;
}

.contact-area a.btn {
  width: 300px;
  height: 60px;
  line-height: 60px;
  margin: 30px auto 0;
  padding: 0 3%;
  box-sizing: border-box;
  background: #fff;
  color: #fa6205;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

@media screen and (max-width: 1195px) {
  .contact-area {
    padding: 46px 0;
    height: 240px;
  }

  .contact-area h1 {
    font-size: 3rem;
    margin: 0.5rem;
    font-weight: 500;
  }

  .contact-area h2 {
    margin-top: 0.5rem;
    font-size: 1.8rem;
  }

  .contact-area a.btn {
    height: 50px;
    line-height: 70px;
    font-size: 1.5rem;
    margin: 20px auto 0;
    padding: 0 5%;
    justify-content: center;
  }

  .contact-area img {
    margin-right: 3rem;
  }
}

@media screen and (max-width: 500px) {
  .contact-area a.btn {
    width: 70%;
    margin-top: 30px;
  }

  .contact-area img {
    width: 27.67px;
    margin-right: 1rem;
  }
}

/*フッター
-------------------------------------*/
footer {
  width: 100%;
  background: #0a286a;
  color: #fff;
}

.footer-in {
  width: 94%;
  max-width: 1460px;
  margin: 0 auto;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo img {
  width: 42.42px;
  height: 32.07px;
}

.footer-logo p {
  font-family: LogoFont;
  font-size: 1.3rem;
  white-space: nowrap;
  color: #fff;
  padding-left: 10px;
}

.footer-nav a {
  float: left;
  display: block;
  height: 30px;
  line-height: 30px;
  font-size: 1.3rem;
  color: #fff;
  white-space: nowrap;
  margin: 0 3%;
}

@media screen and (max-width: 1195px) {
  footer {
    padding: 3rem 0 5rem;
  }

  .footer-in {
    display: block;
    height: auto;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-logo p {
    padding-left: 1rem;
  }

  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
  }

  .footer-nav a {
    font-size: 1.1rem;
    height: 30px;
  }
}

/*ぱんくずリスト
-------------------------------------*/
ul.breadcrumb {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  padding: 14px 0;
  margin-top: 120px;
}

ul.breadcrumb li:first-child img {
  width: 30px;
}

ul.breadcrumb li:nth-child(2) img,
ul.breadcrumb li:nth-child(4) img {
  width: 12px;
  margin: 0 1rem;
}

@media screen and (max-width: 1195px) {
  ul.breadcrumb {
    font-size: 1.2rem;
    margin-top: 50px;
  }

  ul.breadcrumb li:first-child img {
    width: 24.37px;
  }

  ul.breadcrumb li:nth-child(2) img,
  ul.breadcrumb li:nth-child(3) img {
    width: 10px;
    margin: 0 0.7rem;
  }
}


/*ボタン
-------------------------------------*/
a.btn-or-a .btn-in:hover,
a.btn-or-b .btn-in:hover,
a.btn-or-c .btn-in:hover,
a.btn-bl-a .btn-in:hover,
a.btn-bl-b .btn-in:hover {
  color: #fff;
}

a.btn-or-a .btn-in:hover::before,
a.btn-or-b .btn-in:hover::before,
a.btn-or-c .btn-in:hover::before,
a.btn-bl-a .btn-in:hover::before,
a.btn-bl-b .btn-in:hover::before {
  width: 100%;
}

a.btn-or-a {
  width: 252px;
  height: 50px;
  position: relative;
  padding-right: 10%;
  margin: 0 auto;
}

a.btn-or-a::after {
  position: absolute;
  content: '';
  top: 20px;
  right: 0;
  width: 48.87px;
  height: 7.39px;
  background-image: url(../img/common/arrow-btn-or-a.svg);
}

a.btn-or-a .btn-in {
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 50px;
  border: 2px solid #fa6205;
  text-align: center;
  font-size: 1.6rem;
  color: #fa6205;
  z-index: 1;
}

a.btn-or-a .btn-in::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: #fa6205;
  z-index: -1;
  transition: .2s;
}

a.btn-or-b {
  width: 227px;
  height: 34px;
  position: relative;
  padding-right: 10%;
  margin: 3rem auto 0;
}

a.btn-or-b::after {
  position: absolute;
  content: '';
  top: 10px;
  right: 0;
  width: 48.87px;
  height: 7.39px;
  background-image: url(../img/common/arrow-btn-or-b.svg);
}

a.btn-or-b .btn-in {
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 34px;
  border: 2px solid #fa6205;
  text-align: center;
  font-size: 1.3rem;
  color: #fa6205;
  z-index: 1;
}

a.btn-or-b .btn-in::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: #fa6205;
  z-index: -1;
  transition: .2s;
}

a.btn-or-c {
  width: 252px;
  height: 50px;
  position: relative;
  padding-right: 2%;
  margin: 50px auto 0;
}

a.btn-or-c::after {
  position: absolute;
  content: '';
  top: 20px;
  right: 0;
  width: 48.87px;
  height: 7.39px;
  background-image: url(../img/common/arrow-btn-or-c.svg);
}

a.btn-or-c .btn-in {
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 50px;
  border: 2px solid #fa6205;
  text-align: center;
  font-size: 1.6rem;
  color: #fa6205;
  z-index: 1;
}

a.btn-or-c .btn-in::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: #fa6205;
  z-index: -1;
  transition: .2s;
}

a.btn-bl-a {
  width: 227px;
  height: 42px;
  position: relative;
  padding-right: 10%;
  margin: 0 auto;
}

a.btn-bl-a::after {
  position: absolute;
  content: '';
  top: 15px;
  right: 0;
  width: 48.87px;
  height: 7.39px;
  background-image: url(../img/common/arrow-btn-bl-a.svg);
}

a.btn-bl-a .btn-in {
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 42px;
  border: 2px solid #122766;
  text-align: center;
  font-size: 1.4rem;
  color: #122766;
  z-index: 1;
}

a.btn-bl-a .btn-in::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: #122766;
  z-index: -1;
  transition: .2s;
}

a.btn-bl-b {
  width: 481.55px;
  height: 67px;
  position: relative;
  padding-right: 5%;
  margin: 2rem auto 0;
}

a.btn-bl-b::after {
  position: absolute;
  content: '';
  top: 24px;
  right: 0;
  width: 109.1px;
  height: 14.74px;
  background-image: url(../img/common/arrow-btn-bl-b.svg);
}

a.btn-bl-b .btn-in {
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 67px;
  border: 2px solid #122766;
  text-align: center;
  font-size: 1.5rem;
  color: #122766;
  z-index: 1;
}

a.btn-bl-b .btn-in::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: #122766;
  z-index: -1;
  transition: .2s;
}

@media screen and (max-width: 1195px) {
  a.btn-or-a{
    width:150px;
    height:40px;
    margin:0;
  }
  a.btn-or-a .btn-in{
    line-height: 40px;
    font-size:1.4rem;
  }
  a.btn-or-a::after{
    width:32.52px;
    height:5.4px;
    background-image: url(../img/common/arrow-btn-or-a-sp.svg);
  }
  a.btn-or-b::after{
    width:48.87px;
    height:7.39px;
    background-image: url(../img/common/arrow-btn-or-b-sp.svg);
  }
  a.btn-bl-b{
    width:100%;
    height:47px;
    padding-right: 8%;
  }
  a.btn-bl-b .btn-in{
    line-height: 47px;
  }
  a.btn-bl-b::after{
    top:15px;
    width:54.55px;
    height:11.58px;
  background-image: url(../img/common/arrow-btn-bl-b-sp.svg);
  }
}