@charset "utf-8";
/* CSS Document */
/* =====================
  Base
===================== */
body {
  color: #333;
  font-size: 2rem;
  background-color: #fff;
}
body, a, dd, div, dt, h1, h2, h3, h4, h5, h6, html, label, li, p, span, td, th, strong {
  font-family: "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "ＭＳ ゴシック", sans-serif;
  line-height: 1.6;
  font-weight: 500;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans JP', sans-serif;
}
main {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 130px;
}
a {
  display: inline-block;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  color: #333;
  /*backface-visibility: hidden;*/
  overflow: hidden;
  outline: none !important;
}
a img {
  outline: none;
}
a:hover {
  text-decoration: none;
  transition: 0.3s ease-in-out;
  opacity: 0.4;
  color: #333;
}
a:link, a:visited {
  text-decoration: none !important;
}
img {
  max-width: 100%;
  height: auto;
}
figure {
  margin: 0;
}
.container {
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
}
.container-inner {
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
}
.container-fluid::after, .container::after, .row::after {
  display: none;
}
.caution {
  padding-left: 1em;
  text-indent: -1em;
}
/* scroll bar */
html {
  overflow: -moz-scrollbars-vertical;
  scrollbar-width: thin;
  scrollbar-color: #FF6A00 #E2F0E7;
  border-radius: 10px;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #FF6A00;
  border-radius: 10px;
}
::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #E2F0E7;
}
::-moz-selection {
  background-color: #E2F0E7;
  text-shadow: none;
  border-radius: 10px;
}
::selection {
  background-color: #E2F0E7;
  text-shadow: none;
  border-radius: 10px;
}
/* =====================
  汎用クラス
===================== */
.bold {
  font-weight: bold;
}
.en {
  font-family: 'Roboto', sans-serif;
}
.sp {
  display: none !important;
}
/* btn */
.btn-wrap {
  display: flex;
  justify-content: center;
  text-align: center;
  line-height: 1;
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff !important;
  background-color: #FF6A00;
  height: 95px;
  max-width: 600px;
  width: 100%;
  border-radius: 50px;
  z-index: 0;
  box-sizing: border-box;
  opacity: 1 !important;
}
.btn .anim {
  display: flex;
  justify-content: end;
  align-items: center;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translate(0, -50%);
  background-color: #FFBD00;
  height: 76px;
  width: 76px;
  padding-right: 28px;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
}
.btn:hover .anim {
  width: 96.6%;
}
.btn .anim:before {
  content: "→";
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  color: #333;
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translate(0, -50%);
}
.btn span {
  position: relative;
  z-index: 2;
  font-weight: bold;
  font-size: 2.2rem;
}
/* passing */
@-webkit-keyframes passing-bar {
  0% {
    left: 0;
    right: auto;
    width: 0;
  }
  50% {
    left: 0;
    right: auto;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 0;
  }
}
@keyframes passing-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@-webkit-keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.passing .passing-box {
  display: block;
  text-align: center;
}
.passing .passing-bar {
  position: relative;
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.passing .passing-bar:before {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  /* 任意の値 */
  background: #333;
}
.passing .passing-txt {
  opacity: 0;
  /* 後ほど解説 */
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.passing.move .passing-bar:before {
  -webkit-animation: passing-bar 1s ease 0s 1 normal forwards;
  animation: passing-bar 1s ease 0s 1 normal forwards;
}
.passing.move .passing-txt {
  -webkit-animation: passing-txt 0s ease .5s 1 normal forwards;
  animation: passing-txt 0s ease .5s 1 normal forwards;
}
/* =====================
  fade
===================== */
.fade-box {
  visibility: hidden;
}
.fade {
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-name: fade;
  visibility: visible !important;
}
@keyframes fade {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =====================
  fade
===================== */
.img-wrap {
  overflow: hidden;
}
.img-wrap img {
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease;
}
a:hover .img-wrap img {
  transform: scale(1.1);
}
/* =====================
  info-area
===================== */
.info-area .container {
  padding: 0 30px;
}
.info-area .info-box {
  padding: 100px 0;
  background-image: url("../images/common/bg_info.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  color: #fff;
  box-sizing: border-box;
  margin-bottom: 80px;
}
.info-area .info-box .circle {
  width: 186px;
  height: 186px;
  border-radius: 100%;
  background-color: #FFBD00;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.8rem;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-30px, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.info-area .info-box h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.info-area .info-box p {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 50px;
}
.info-area .info-box .info-text {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 0;
}
.info-area .info-box .detail {}
.info-area .info-box .detail div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-area .info-box .detail div:last-child {
  margin-bottom: 0;
}
.info-area .info-box .detail div i {
  margin-right: 20px;
}
.info-area .info-box .detail div * {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}
.info-area .info-box .detail div .tel {
  font-size: 3.6rem;
}
.info-area .bnr-box {
  display: flex;
  justify-content: space-between;
}
.info-area .bnr-box .bnr {
  position: relative;
}
.info-area .bnr-box .bnr:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.info-area .bnr-box .bnr:hover:after {
  opacity: 0.4;
}
.info-area .bnr-box figure {
  max-width: 550px;
}
.info-area .bnr-box .staff {
  margin-right: 20px;
  pointer-events: none;
}
.info-area .bnr-box .staff div {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFBD00;
}
.info-area .bnr-box .staff div strong {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 4rem;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  transform: translate(0, -30px);
}
.info-area .bnr-box .staff p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 3rem;
  color: #FF6A00;
  background-color: #FFD365;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.info-area .bnr-box .company strong {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 87px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  text-align: center;
}
.info-area .bnr-box .company i {
  font-family: 'Noto Sans JP', sans-serif;
  width: 56px;
  height: 56px;
  border-radius: 100%;
  background-color: #FFD365;
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}
/* =====================
  footer
===================== */
footer {
  margin-top: 80px;
  padding-top: 30px;
  background-color: #F5F5F5;
}
footer .copy {
  font-size: 1.6rem;
  text-align: center;
  background-color: #DDDDDD;
  margin-top: 40px;
  padding: 17px 0;
}
/*footer .foot-nav {
  display: flex;
  justify-content: space-between;
}*/
footer .foot-nav .company {
  margin-right: 20px;
}
footer .foot-nav .company a img {
  width: 192px;
  height: auto;
}
footer .foot-nav .company .detail {
  width: 100%;
  display: flex;
  justify-content: space-between;
  /*flex-direction: column;*/
  margin-top: 16px;
}
footer .foot-nav .company .detail p {
  font-size: 1.8rem;
}
footer .foot-nav .company .detail .map iframe {
  max-width: 600px;
  height: 300px;
}
footer .foot-nav .link {
  display: flex;
}
footer .foot-nav .link ul {
  display: flex;
  flex-direction: column;
}
footer .foot-nav .link ul:nth-child(1) {
  margin-right: 80px;
}
footer .foot-nav .link a:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  background-color: #333;
  position: relative;
  top: -6px;
  left: -5px;
}
footer .foot-nav .link a {
  font-size: 1.8rem;
  line-height: 2;
}
/* =====================
  pegeTop
===================== */
.pagetop {
  display: none;
}
.pagetop a {
  position: fixed;
  bottom: 20px;
  right: 60px;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color: #FF6A00;
  ;
  text-align: center;
  z-index: 10;
}
.pagetop a span {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  margin-top: 27px;
  transition: 0.3s ease-in-out;
}
.pagetop a:hover span {
  margin-top: 22px;
}
/* ====================================================================================
         SP時
  ==================================================================================== */
@media screen and (max-width: 767px) {
  /* =====================
  Base
===================== */
  body {
    font-size: 1.6rem;
  }
  body, a, dd, div, dt, h1, h2, h3, h4, h5, h6, html, label, li, p, span, td, th {
    line-height: 1.6;
  }
  main {
    margin-top: 80px;
  }
  /* =====================
  汎用クラス
===================== */
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .inner-responsive {
    overflow-x: scroll;
    display: block;
  }
  /* btn */
  .btn {
    height: 56px;
  }
  .btn .anim {
    left: 10px;
    height: 40px;
    width: 40px;
    padding-right: 12px;
  }
  .btn:hover .anim {
    width: 93%;
  }
  .btn .anim:before {
    right: 12px;
  }
  .btn span {
    font-size: 1.6rem;
  }
  /* =====================
  info-area
===================== */
  .info-area .info-box {
    height: 430px;
    padding: 60px 20px 20px 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
  }
  .info-area .info-box .circle {
    width: 105px;
    height: 105px;
    font-size: 1.6rem;
    transform: translate(-15px, -50%);
  }
  .info-area .info-box h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  .info-area .info-box p {
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
  }
  .info-area .info-box .detail {
    max-width: 100%;
  }
  .info-area .info-box .detail div {
    justify-content: center;
    margin-bottom: 30px;
  }
  .info-area .info-box .detail div i {
    margin-right: 10px;
  }
  .info-area .info-box .detail div * {
    font-size: 2rem;
  }
  .info-area .info-box .detail .fax {
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .info-area .info-box .detail .fax * {
    font-size: 1.6rem;
  }
  .info-area .info-box .detail div .tel {
    font-size: 2.2rem;
  }
  .info-area .info-box .info-text {
    font-size: 1.4rem;
    margin-top: 0px;
  }
  .info-area .bnr-box {
    display: block;
  }
  .info-area .bnr-box .bnr:after {
    display: none;
  }
  .info-area .bnr-box figure {
    max-width: 100%;
  }
  .info-area .bnr-box .staff {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .info-area .bnr-box .staff div strong {
    font-size: 2.2rem;
    transform: translate(0, -15px);
  }
  .info-area .bnr-box .staff p {
    font-size: 2rem;
    height: 37px;
  }
  .info-area .bnr-box .company strong {
    font-size: 1.7rem;
    top: 53px;
  }
  .info-area .bnr-box .company i {
    width: 34px;
    height: 34px;
    top: 98px;
  }
  .info-area .tel-btn {
    border-radius: 50px;
    max-width: 260px;
    height: 46px;
    width: 100%;
    padding: 0 20px;
    background-color: #FF6A00;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
  }
  .info-area .tel-btn i {
    width: 20px;
    display: flex;
    align-items: center;
    margin-right: 10px;
  }
  .info-area .tel-btn span {
    font-size: 2.2rem;
    color: #fff;
  }
  /* =====================
  footer
===================== */
  footer {
    margin-top: 20px;
    padding-top: 70px;
    text-align: center;
  }
  footer .copy {
    margin-top: 20px;
    padding: 10px 0;
  }
  footer .foot-nav {
    display: block;
  }
  footer .foot-nav .company {
    margin-right: 0;
  }
  footer .foot-nav .company a img {
    width: 235px;
  }
  footer .foot-nav .company .detail {
    display: block;
    margin-top: 30px;
  }
  footer .foot-nav .company .detail p {
    font-size: 2.1rem;
  }
  footer .foot-nav .company .detail p:first-child {
    margin-bottom: 10px;
  }
  footer .foot-nav .company .detail span {
    display: block;
    font-size: 1.8rem;
  }
  footer .foot-nav .link {
    display: none;
  }
  footer .foot-nav .company .detail .map iframe {
    max-width: 100%;
    height: 200px;
  }
  /* =====================
  pegeTop
===================== */
  .pagetop a {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 60px;
    border-radius: 5px;
  }
  .pagetop a span {
    width: 7px;
    height: 7px;
    margin-top: 18px;
  }
}
@media screen and (max-width: 1220px) {
  .container {
    padding: 0 20px !important;
    max-width: 100%;
  }
  .container-inner {
    padding: 0 20px !important;
    max-width: 100%;
  }
}
/* ====================================================================================
         ipad
  ==================================================================================== */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none;
  }
}
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {}