@charset "UTF-8";
@font-face {
  font-family: 'Arial Black';
  font-style: normal;
  font-weight: 400;
  src: local("Arial Black"), url("ariblk_0.ttf") format("ttf");
}
select::-ms-expand {
  display: none;
}

html {
  height: 100%;
  font-size: 62.5%;
  background: #fff;
  overflow-y: scroll;
}
@media (max-width: 480px) {
  html {
    font-size: 87.5%;
    overflow-y: inherit;
  }
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
input,
textarea,
p,
th,
td {
  padding: 0;
  margin: 0;
}

address,
caption,
em,
strong,
th {
  font-style: normal;
}

caption,
th {
  text-align: left;
}

hr,
legend {
  display: none;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

li {
  list-style-type: none;
}

table,
ol,
ul,
dl,
blockquote,
pre {
  margin-bottom: 0px;
}

p {
  margin-bottom: 0;
}

a img,
fieldset {
  border: none;
}

article,
aside,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

a:link {
  color: #3F464B;
  text-decoration: none;
}

a:visited {
  color: #3F464B;
  text-decoration: none;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  width: 100%;
  display: block;
}

#splash {
  /*fixedで全面に固定*/
  position: fixed;
  z-index: 20000;
  width: 100%;
  height: 100%;
  background: #1b2025;
  text-align: center;
  color: #fff;
}

/* Loadingバー中央配置　*/
#splash_text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 20000;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
}

/*-----------------------------------------*/
@media (max-width: 480px) {
  .only-pc {
    display: none;
  }
}

.only-sp {
  display: none;
}
@media (max-width: 480px) {
  .only-sp {
    display: block;
  }
}

.txt_b {
  font-weight: bold;
  margin: 0 3px;
}

.roboto {
  font-family: 'Roboto', sans-serif;
}

.serif {
  font-family: 'Noto Serif JP', serif;
}

/*-----------------------------------------*/
body {
  position: relative;
  -webkit-text-size-adjust: none;
  height: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  color: #3F464B;
  letter-spacing: 2px;
  line-height: 1.8;
  margin: 0px;
  background: #fff;
  z-index: 1;
}
@media (max-width: 480px) {
  body {
    font-size: 3.4666666667vw;
    min-width: 100%;
    line-height: 1.6;
    overflow-x: hidden;
  }
}

.header {
  position: fixed;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  z-index: 10000;
}
@media (max-width: 480px) {
  .header {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 896px) {
  .header.active {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
.header.active .header__logo {
  color: #1b2025;
}
.header.active .smoothlist__link {
  color: #1b2025;
}
@media (min-width: 896px) {
  .header.active .smoothlist__link.contact {
    background-color: #fff;
    border-color: #1b2025;
  }
}
@media (min-width: 896px) {
  .header.active .smoothlist__link::before {
    background-color: #1b2025;
  }
}
.header .header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 480px) {
  .header .header__inner {
    width: 100%;
    padding: 5px 0 10px;
    margin-bottom: 2.6666666667vw;
  }
}
.header .header__logo {
  font-size: 4rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  @import url("https://fonts.googleapis.com/css2?family=Cormorant:wght@400;500;600;700&display=swap");
  font-family: 'Cormorant', serif;
  padding-bottom: 10px;
  padding-left: 20px;
}
@media (max-width: 480px) {
  .header .header__logo {
    font-size: 6.9333333333vw;
    text-align: center;
    padding-top: 1.6vw;
    padding-left: 4vw;
  }
}
.header .header__logo .sub {
  font-size: 60%;
}
@media (max-width: 480px) {
  .header .header__logo img {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .nav-block {
    position: absolute;
    width: 90vw;
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
  }
}

.gnavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gnavi .gnavi__item:not(:last-child) {
  margin-right: 30px;
}
@media (max-width: 480px) {
  .gnavi .gnavi__item:not(:last-child) {
    margin-right: 0;
  }
}
.gnavi .gnavi__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  padding: 5px;
}
@media (max-width: 480px) {
  .gnavi .gnavi__link {
    font-size: 4.8vw;
  }
}
.gnavi .gnavi__link::before {
  position: absolute;
  content: " ";
  width: 0;
  height: 2px;
  background-color: #000;
  right: 0;
  bottom: 0;
  -webkit-transition: width .3s;
  transition: width .3s;
}
.gnavi .gnavi__link:hover::before {
  width: 100%;
  left: 0;
  -webkit-transition: width .3s;
  transition: width .3s;
}

@media (max-width: 480px) {
  .smoothNav .smoothNav2 {
    position: fixed;
    width: 70vw;
    height: 100vh;
    padding: 14.6666666667vw 4vw 9.3333333333vw 6.6666666667vw;
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    top: 0;
    right: 0;
    z-index: 1000;
  }
}
.smoothNav .openbtn {
  display: none;
}
@media (max-width: 480px) {
  .smoothNav .openbtn {
    position: fixed;
    content: " ";
    font-family: 'Roboto', sans-serif;
    display: block;
    background-color: #1b2025;
    cursor: pointer;
    border: 1px solid #545454;
    width: 12vw;
    height: 12vw;
    top: 1.8666666667vw;
    right: 2.6666666667vw;
    -webkit-transition: top .2s, right .3s, opacity .3s, border-radius .1s;
    transition: top .2s, right .3s, opacity .3s, border-radius .1s;
    color: #fff;
    z-index: 1000;
  }
}
@media (max-width: 480px) {
  .smoothNav .openbtn:before, .smoothNav .openbtn:after {
    position: absolute;
    content: " ";
    background-color: #fff;
    width: 6.6666666667vw;
    height: 0.5333333333vw;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: top .2s .2s, -webkit-transform .2s;
    transition: top .2s .2s, -webkit-transform .2s;
    transition: transform .2s, top .2s .2s;
    transition: transform .2s, top .2s .2s, -webkit-transform .2s;
    top: 50%;
    left: 50%;
  }
}
.smoothNav .openbtn:before {
  top: calc(50% - 2.9333333333vw);
}
.smoothNav .openbtn:after {
  top: calc(50% - 1.0666666667vw);
}
.smoothNav .openbtn span.close-change {
  position: absolute;
  bottom: 0.5333333333vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 2.1333333333vw;
  letter-spacing: 0;
}
.smoothNav.openbtn-active .smoothNav2 {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
}
@media (max-width: 480px) {
  .smoothNav.openbtn-active .smoothlist__item {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
    -webkit-transition: opacity .6s, -webkit-transform .3s;
    transition: opacity .6s, -webkit-transform .3s;
    transition: transform .3s, opacity .6s;
    transition: transform .3s, opacity .6s, -webkit-transform .3s;
  }
}
@media (max-width: 480px) {
  .smoothNav.openbtn-active .smoothlist__item:nth-child(1) {
    -webkit-transition-delay: .3s;
            transition-delay: .3s;
  }
}
@media (max-width: 480px) {
  .smoothNav.openbtn-active .smoothlist__item:nth-child(2) {
    -webkit-transition-delay: .5s;
            transition-delay: .5s;
  }
}
@media (max-width: 480px) {
  .smoothNav.openbtn-active .smoothlist__item:nth-child(3) {
    -webkit-transition-delay: .6s;
            transition-delay: .6s;
  }
}
@media (max-width: 480px) {
  .smoothNav.openbtn-active .smoothlist__item:nth-child(4) {
    -webkit-transition-delay: .8s;
            transition-delay: .8s;
  }
}
@media (max-width: 480px) {
  .smoothNav.openbtn-active .smoothlist__item:nth-child(5) {
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
  }
}
@media (max-width: 480px) {
  .smoothNav.openbtn-active .smoothlist__item:nth-child(6) {
    -webkit-transition-delay: 1.2s;
            transition-delay: 1.2s;
  }
}
.smoothNav.openbtn-active .openbtn:before, .smoothNav.openbtn-active .openbtn:after {
  top: calc(50% - 8px);
  width: 27px;
  -webkit-transition: top .2s, -webkit-transform .2s .2s;
  transition: top .2s, -webkit-transform .2s .2s;
  transition: transform .2s .2s, top .2s;
  transition: transform .2s .2s, top .2s, -webkit-transform .2s .2s;
}
@media (max-width: 480px) {
  .smoothNav.openbtn-active .openbtn:before, .smoothNav.openbtn-active .openbtn:after {
    top: calc(50% - 1.6vw);
    width: 5.3333333333vw;
  }
}
.smoothNav.openbtn-active .openbtn:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.smoothNav.openbtn-active .openbtn:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.smoothNav.openbtn-active span.close-change {
  font-size: 0;
}
.smoothNav.openbtn-active span.close-change::before {
  font-size: 1.1rem;
  content: 'CLOSE';
}
@media (max-width: 480px) {
  .smoothNav.openbtn-active span.close-change::before {
    font-size: 2.1333333333vw;
  }
}
.smoothNav .smoothlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 480px) {
  .smoothNav .smoothlist {
    display: block;
  }
}
.smoothNav .smoothlist__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 480px) {
  .smoothNav .smoothlist__item {
    display: block;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
    -webkit-transition: opacity 0s, -webkit-transform 0s;
    transition: opacity 0s, -webkit-transform 0s;
    transition: transform 0s, opacity 0s;
    transition: transform 0s, opacity 0s, -webkit-transform 0s;
  }
}
.smoothNav .smoothlist__item:not(:last-child) {
  margin-right: 40px;
}
@media (max-width: 480px) {
  .smoothNav .smoothlist__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 6.6666666667vw;
  }
}
.smoothNav .smoothlist__link {
  position: relative;
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 4px 5px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: color .3s;
  transition: color .3s;
  letter-spacing: 0;
}
@media (max-width: 480px) {
  .smoothNav .smoothlist__link {
    display: block;
    font-size: 4.2666666667vw;
    font-weight: bold;
    color: #1b2025;
    padding-top: 2.6666666667vw 2.6666666667vw;
    z-index: 1;
  }
}
.smoothNav .smoothlist__link.contact {
  padding: 25px 60px;
  background-color: #1b2025;
  border: 1px solid #1b2025;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}
@media (max-width: 480px) {
  .smoothNav .smoothlist__link.contact {
    color: #fff;
    padding: 2.6666666667vw 0;
    margin-top: 8vw;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .smoothNav .smoothlist__link.contact .smoothlist__linkin {
    padding-left: 0;
  }
}
.smoothNav .smoothlist__link.contact::before {
  content: none;
}
.smoothNav .smoothlist__link.contact::after {
  font-size: 1.5rem;
  display: inline-block;
  content: '\f0e0';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: 10px;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}
@media (max-width: 480px) {
  .smoothNav .smoothlist__link.contact::after {
    font-size: 4vw;
  }
}
.smoothNav .smoothlist__link::before {
  position: absolute;
  content: " ";
  width: 0;
  height: 1px;
  background-color: #fff;
  right: 0;
  bottom: 0;
  -webkit-transition: width .3s;
  transition: width .3s;
}
@media (max-width: 480px) {
  .smoothNav .smoothlist__link::before {
    display: none;
  }
}
.smoothNav .smoothlist__link:hover::before {
  width: 100%;
  left: 0;
  -webkit-transition: width .3s;
  transition: width .3s;
}
.smoothNav .smoothlist__link:hover.contact::after {
  content: '\f1d8';
  -webkit-transform: translate(1px, -2px);
          transform: translate(1px, -2px);
}
.smoothNav .smoothlist__link:hover .smoothlist__linkin::first-letter {
  -webkit-transition: color .5s;
  transition: color .5s;
  color: #00819f;
}
.smoothNav .smoothlist__linkin {
  display: inline-block;
}
@media (max-width: 480px) {
  .smoothNav .smoothlist__linkin {
    display: inline-block;
    padding-left: 0;
  }
}
.smoothNav .smoothbtn {
  width: 300px;
  margin: 0 auto 20px;
}
@media (max-width: 480px) {
  .smoothNav .smoothbtn {
    width: 100%;
    margin-bottom: 8vw;
  }
}
.smoothNav .smoothbtn__link {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  background-color: #ff7e02;
  border-radius: 23px;
  padding: 10px 0;
}
@media (max-width: 480px) {
  .smoothNav .smoothbtn__link {
    font-size: 6.4vw;
    font-weight: bold;
    border-radius: 13.3333333333vw;
    padding: 5.3333333333vw 0;
    line-height: 1.3;
  }
}
.smoothNav .smoothbtn__link::before, .smoothNav .smoothbtn__link::after {
  position: absolute;
  content: " ";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.smoothNav .smoothbtn__link::before {
  width: 13px;
  height: 13px;
  background-color: #fff;
  border-radius: 50%;
  right: 15px;
}
@media (max-width: 480px) {
  .smoothNav .smoothbtn__link::before {
    width: 7.4666666667vw;
    height: 7.4666666667vw;
    right: 4vw;
  }
}
.smoothNav .smoothbtn__link::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #ff7e02;
  right: 18px;
}
@media (max-width: 480px) {
  .smoothNav .smoothbtn__link::after {
    border-width: 2.1333333333vw 0 2.1333333333vw 2.9333333333vw;
    right: 5.8666666667vw;
  }
}
.smoothNav .smoothbtn__inpuilylink {
  border: 1px solid #333;
  background-color: #fff;
  padding: 15px 40px 10px;
  display: block;
  pointer-events: none;
}
@media (max-width: 480px) {
  .smoothNav .smoothbtn__inpuilylink {
    pointer-events: auto;
    padding: 5.3333333333vw 8vw;
  }
}
.smoothNav .closebtn {
  position: relative;
  width: 200px;
  color: #fff;
  display: none;
  padding: 8px 0;
  margin: 0 auto;
  text-align: center;
  background-color: #666;
  border-radius: 20px;
  border: none;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}
@media (max-width: 480px) {
  .smoothNav .closebtn {
    display: block;
    font-size: 3.4666666667vw;
    width: 80%;
    padding: 2.1333333333vw 0;
    border-radius: 2.6666666667vw;
    margin-top: 10.6666666667vw;
  }
}
@media (min-width: 896px) {
  .smoothNav .closebtn:hover {
    opacity: 0.7;
  }
}
.smoothNav .closebtn .fas {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.contents {
  position: relative;
  z-index: -1;
}
.contents::after {
  position: absolute;
  content: " ";
  width: 200px;
  background-image: url(../img/bg03.svg);
  background-size: contain;
  z-index: -1;
}
@media (max-width: 480px) {
  .contents::after {
    width: 100vw;
    height: 100%;
    background-size: 24vw;
    top: 0;
    left: 0;
  }
}

.footer .footer__logo {
  font-size: 3.5rem;
  font-weight: 500;
  text-align: center;
  color: #242424;
  line-height: 1;
  @import url("https://fonts.googleapis.com/css2?family=Cormorant:wght@400;500;600;700&display=swap");
  font-family: 'Cormorant', serif;
  padding-bottom: 10px;
}
.footer .footer__logo .first-txt {
  color: #00819f;
}
@media (max-width: 480px) {
  .footer .footer__logo {
    font-size: 6.9333333333vw;
    font-weight: bold;
    text-align: center;
    padding-top: 1.6vw;
    padding-bottom: 5.3333333333vw;
  }
}
@media (max-width: 480px) {
  .footer .footer__logo img {
    width: 90%;
  }
}
.footer .footer__add {
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 480px) {
  .footer .footer__add {
    font-size: 2.9333333333vw;
  }
}
.footer .footer__tel {
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 480px) {
  .footer .footer__tel {
    font-size: 3.2vw;
  }
}

.header-content {
  position: relative;
  padding: 100px 0 60px;
  background: url(../img/visual03.jpg) no-repeat center center/cover;
  z-index: 1;
}
@media (max-width: 480px) {
  .header-content {
    padding: 26.6666666667vw 0 16vw;
  }
}
.header-content::after {
  position: absolute;
  content: " ";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: -1;
}
.header-content .header-content__ttl {
  font-size: 4rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
@media (max-width: 480px) {
  .header-content .header-content__ttl {
    font-size: 6.6666666667vw;
  }
}

.section {
  overflow: hidden;
}
.section.bg01 {
  background-color: #d8d8d881;
}
.section .section__in {
  position: relative;
  padding: 100px 0;
  max-width: 1150px;
  width: calc(100% - 30px);
  margin: 0 auto;
}
@media (max-width: 480px) {
  .section .section__in {
    width: 100%;
    padding: 16vw 5.3333333333vw;
  }
}
.section .section__in.w900 {
  width: 900px;
  max-width: 100%;
}
.section .section__in.p-50 {
  padding: 50px 0;
}
@media (max-width: 480px) {
  .section .section__in.p-50 {
    padding: 8vw 5.3333333333vw;
  }
}
.section .section__in.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section .section__msg {
  text-align: center;
  line-height: 2;
  padding-top: 40px;
}
@media (max-width: 480px) {
  .section .section__msg {
    padding: 8vw 5.3333333333vw;
  }
}
.section .section-ttl {
  color: #3F464B;
  margin-bottom: 40px;
  text-align: center;
  text-shadow: 0px -1px 13px rgba(255, 255, 255, 0.9);
}
@media (max-width: 480px) {
  .section .section-ttl {
    margin-bottom: 9.3333333333vw;
    text-align: center;
  }
}
.section .section-ttl .section-ttl__main {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1;
}
@media (max-width: 480px) {
  .section .section-ttl .section-ttl__main {
    font-size: 6.9333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.section .section-ttl .section-ttl__sub {
  font-size: 1.4rem;
  top: 0;
  left: 0;
  line-height: 1;
}
@media (max-width: 480px) {
  .section .section-ttl .section-ttl__sub {
    font-size: 3.4666666667vw;
  }
}
.section .section-ttl.ttl02 {
  font-family: 'Noto Serif JP', serif;
  font-size: 3.2rem;
  letter-spacing: 1px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 36px;
  padding: 0 50px;
  position: relative;
  color: #000;
}
@media (max-width: 480px) {
  .section .section-ttl.ttl02 {
    font-size: 5.3333333333vw;
    margin-bottom: 9.6vw;
    padding: 0 8vw;
  }
}
.section .section-ttl.ttl02::before, .section .section-ttl.ttl02::after {
  content: '';
  height: 2px;
  width: 30px;
  background-color: #000;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 480px) {
  .section .section-ttl.ttl02::before, .section .section-ttl.ttl02::after {
    height: 1px;
    width: 5.3333333333vw;
  }
}
.section .section-ttl.ttl02::before {
  left: 0px;
}
.section .section-ttl.ttl02::after {
  right: 0px;
}
.section.contact {
  background: linear-gradient(125deg, white 40%, #ebebeb 100%);
}
.section.contact .section__in {
  width: 780px;
}
@media (max-width: 480px) {
  .section.contact .section__in {
    width: 100%;
  }
}
.section.contact .contact__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  .section.contact .contact__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 8vw;
  }
}
.section.contact .contact__heading .section-ttl {
  text-align: left;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .section.contact .contact__heading .section-ttl {
    margin-bottom: 5.3333333333vw;
  }
}

#breadcrumbs {
  width: 1200px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  #breadcrumbs {
    width: 100%;
    padding: 0 5.3333333333vw;
  }
}
#breadcrumbs * {
  font-size: 1.2rem;
}
@media (max-width: 480px) {
  #breadcrumbs * {
    font-size: 3.2vw;
  }
}
#breadcrumbs + .section {
  margin-top: 40px;
}
@media (max-width: 480px) {
  #breadcrumbs + .section {
    margin-top: 10.6666666667vw;
  }
}

.table_base {
  width: 80%;
  background: #fff;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .table_base {
    width: 100%;
  }
}
.table_base table {
  width: 100%;
  margin: 0;
}
@media (max-width: 480px) {
  .table_base table {
    border: 0;
  }
}
.table_base table td,
.table_base table th {
  font-weight: normal;
  padding: 25px 16px;
}
@media (max-width: 480px) {
  .table_base table td,
  .table_base table th {
    font-weight: normal;
    border: 0;
    padding: 12px;
    display: block;
  }
}
.table_base table td span.map_jump {
  margin-left: 10px;
  position: relative;
  top: -2px;
}
.table_base table td span.map_jump a {
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 3px;
  padding: 2px 6px;
  background: #ccc;
  display: inline-block;
}
@media (max-width: 480px) {
  .table_base table td span.map_jump a {
    font-size: 2.1333333333vw;
    padding: 0.8vw 1.3333333333vw;
  }
}
.table_base table td span.map_jump a:hover {
  opacity: 0.7;
}
@media (max-width: 480px) {
  .table_base table td span.map_jump a:hover {
    opacity: 1;
  }
}
.table_base table tbody th {
  text-align: center;
  width: 28%;
  border-bottom: solid 1px #ddd;
}
@media (max-width: 480px) {
  .table_base table tbody th {
    text-align: left;
    width: 100%;
    background: #f1f1f1;
  }
}
.table_base table tbody td {
  padding: 25px 40px;
  border-bottom: solid 1px #ddd;
}
@media (max-width: 480px) {
  .table_base table tbody td {
    padding: 20px 12px;
  }
}
.table_base table tbody tr:last-child th, .table_base table tbody tr:last-child td {
  border-bottom: none;
}
.table_base table dd {
  border-bottom: 1px dotted #ccc;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.table_base table dd:last-child {
  margin-bottom: 0;
  padding: 0;
  border: 0;
}

.footer {
  padding: 50px 0;
  border-top: 3px solid #585858;
  background: #ffffff;
}
@media (max-width: 480px) {
  .footer {
    padding: 8vw 0;
    border-width: 0.5333333333vw;
  }
}
.footer .footer__inner {
  width: 1000px;
  margin: 0 auto;
  background: #ffffff;
}
@media (max-width: 480px) {
  .footer .footer__inner {
    width: 100%;
    padding: 0 8vw;
  }
}
.footer .footer__inner .footer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .smoothlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.3rem;
  margin-top: 30px;
}
@media (max-width: 480px) {
  .footer .smoothlist {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 3.2vw;
    margin-top: 8vw;
    padding-bottom: 8vw;
  }
}
.footer .smoothlist .smoothlist__item:not(:last-child) {
  margin-right: 15px;
}
@media (max-width: 480px) {
  .footer .smoothlist .smoothlist__item:not(:last-child) {
    margin-right: 4vw;
    margin-bottom: 2.6666666667vw;
  }
}
.footer .smoothlist .smoothlist__link {
  position: relative;
  padding-left: 17px;
}
@media (max-width: 480px) {
  .footer .smoothlist .smoothlist__link {
    padding-left: 4vw;
  }
}
.footer .smoothlist .smoothlist__link::before {
  position: absolute;
  content: " ";
  width: 5px;
  height: 5px;
  border: 1px solid #585858;
  border-bottom: none;
  border-left: none;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  top: 50%;
  left: 0;
}
@media (max-width: 480px) {
  .footer .smoothlist .smoothlist__link::before {
    width: 1.0666666667vw;
    height: 1.0666666667vw;
  }
}
@media (min-width: 896px) {
  .footer .smoothlist .smoothlist__link:hover {
    text-decoration: underline;
  }
}
.footer .footer__copy {
  text-align: center;
  font-size: 1.1rem;
  padding-top: 20px;
  margin-top: 40px;
  border-top: 1px solid #ccc;
}
@media (max-width: 480px) {
  .footer .footer__copy {
    font-size: 2.9333333333vw;
    padding: 5.3333333333vw 0 0;
    margin-top: 0;
  }
}

.contents .contents__flow {
  text-align: center;
}
@media (max-width: 480px) {
  .contents .contents__flow img {
    width: 90%;
  }
}

.contents__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 320px;
  padding-top: 80px;
  max-height: calc(40vh + 80px);
  background-color: #ffffff;
  background-image: linear-gradient(30deg, #f2f2f2 12%, transparent 12.5%, transparent 87%, #f2f2f2 87.5%, #f2f2f2), linear-gradient(150deg, #f2f2f2 12%, transparent 12.5%, transparent 87%, #f2f2f2 87.5%, #f2f2f2), linear-gradient(30deg, #f2f2f2 12%, transparent 12.5%, transparent 87%, #f2f2f2 87.5%, #f2f2f2), linear-gradient(150deg, #f2f2f2 12%, transparent 12.5%, transparent 87%, #f2f2f2 87.5%, #f2f2f2), linear-gradient(60deg, #f2f2f277 25%, transparent 25.5%, transparent 75%, #f2f2f277 75%, #f2f2f277), linear-gradient(60deg, #f2f2f277 25%, transparent 25.5%, transparent 75%, #f2f2f277 75%, #f2f2f277);
  background-size: 46px 81px;
  background-position: 0 0, 0 0, 23px 40px, 23px 40px, 0 0, 23px 40px;
}
@media (max-width: 480px) {
  .contents__header {
    height: 53.3333333333vw;
    padding: 0 5.3333333333vw;
  }
}
.contents__header .contents-ttl {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  color: #1b2025;
  line-height: 1.5;
  font-family: 'Noto Serif JP', serif;
}
.contents__header .contents-ttl .contents-ttl__en {
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .contents__header .contents-ttl .contents-ttl__en {
    font-size: 4.2666666667vw;
  }
}
.contents__header .contents-ttl .contents-ttl__main {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 4px;
}
@media (max-width: 480px) {
  .contents__header .contents-ttl .contents-ttl__main {
    font-size: 6.4vw;
    letter-spacing: 1.0666666667vw;
  }
}

.page-num {
  width: 1200px;
  margin: 0 auto 50px;
}
@media (max-width: 480px) {
  .page-num {
    width: 100%;
    margin-bottom: 13.3333333333vw;
  }
}
.page-num .page-num__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-num .page-num__list li {
  text-align: center;
  border: 1px solid;
  margin-right: 1.5em;
}
.page-num .page-num__list li.proceed {
  border: none;
}
.page-num .page-num__list li:last-child {
  margin-right: 0;
}
.page-num .page-numbers {
  display: block;
  padding: 5px 10px;
}
@media (max-width: 480px) {
  .page-num .page-numbers {
    padding: 1.3333333333vw 2.6666666667vw;
  }
}
.page-num .page-numbers.current {
  background-color: #ccc;
}

.unit-ttl01 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: left;
  margin-bottom: 36px;
  padding-bottom: 10px;
  position: relative;
}
@media (max-width: 480px) {
  .unit-ttl01 {
    font-size: 5.3333333333vw;
    margin-bottom: 9.6vw;
    padding-bottom: 2.6666666667vw;
  }
}
.unit-ttl01::after {
  content: '';
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, #014e80), color-stop(30%, #c8c8c8));
  background: linear-gradient(to right, #014e80 30%, #c8c8c8 30%);
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.unit-list01 .unit-list01__item {
  list-style-type: inherit;
  margin-left: 2em;
}

.unit-btn01 {
  width: 200px;
  margin: 0 auto;
  font-size: 1.3rem;
  padding: 12px 0;
  display: block;
  border: 1px solid #333;
  background-color: #fff;
  border-radius: 3px;
  text-align: center;
}
@media (max-width: 480px) {
  .unit-btn01 {
    width: 53.3333333333vw;
    font-size: 3.2vw;
    font-weight: normal;
    padding: 2.1333333333vw 0;
    border-radius: 0.8vw;
  }
}
@media (min-width: 896px) {
  .unit-btn01:hover {
    color: #fff;
    background-color: #333;
  }
}
