@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  line-height: inherit;
}

.anim-box {
  opacity: 0;
}

.anim-box.slideinU.is-animated {
  animation: slideInU 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slideInU {
  0% {
    transform: translateY(180px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
  }
  40%,100% {
    opacity: 1;
  }
}
.anim-box.slideinL.is-animated {
  opacity: 0;
  animation: slideInL 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slideInL {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%,100% {
    opacity: 1;
  }
}
.anim-box.slideinR.is-animated {
  opacity: 0;
  animation: slideInR 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slideInR {
  0% {
    transform: translateX(-180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%,100% {
    opacity: 1;
  }
}
/* html5
---------------------*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  color: #231815;
  font-size: 17px;
  font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ','Mayryo','ＭＳ Ｐゴシック','MS PGothic',sans-serif;
}
@media (min-width: 500px) {
  body {
    min-width: 1170px;
  }
}

*, *:before, *:after {
  box-sizing: border-box;
}

a {
  color: #000;
}

a:hover, a:active, a:focus {
  color: #000;
}

img,
img[src*=".svg"] {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

iframe {
  vertical-align: bottom;
}

video {
  vertical-align: bottom;
}

table {
  border-collapse: collapse;
}

ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 499px) {
  .hidden-xs {
    display: none;
  }
}

.visible-xs {
  display: none;
}
@media (max-width: 499px) {
  .visible-xs {
    display: block;
  }
}

/* Content
---------------------*/
.container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1200px) {
  .container {
    width: 1140px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Header
---------------------*/
#header {
  display: flex;
  padding-left: 55px;
  padding-right: 55px;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
body[class*="page-home"] #header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
@media (min-width: 500px) {
  #header .logo {
    max-width: 30%;
  }
}
@media (max-width: 499px) {
  #header {
    padding-left: 10px;
  }
  #header .logo {
    width: 70%;
    padding-top: 20px;
  }
}
@media (min-width: 500px) {
  #header {
    min-width: 1170px;
  }
}
@media (max-width: 499px) {
  #header nav {
    display: none;
  }
}
#header nav ul {
  display: flex;
}
#header nav a {
  display: block;
  padding: 50px 30px;
  color: #231815;
  font-size: 19px;
  text-decoration: none;
}
#header nav a:hover {
  color: #00a1e3;
}
body[class*="page-home"] #header nav a {
  color: #fff;
}
body[class*="page-home"] #header nav a:hover {
  color: #00a1e3;
}

#featured {
  position: relative;
  margin-bottom: 200px;
}
@media (max-width: 499px) {
  #featured {
    margin-bottom: 80px;
  }
}
#featured video {
  width: 100%;
  vertical-align: bottom;
}

.page-home .heading {
  margin-bottom: 80px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}
@media (max-width: 499px) {
  .page-home .heading {
    padding-top: 80px;
    margin-top: -80px;
  }
}
.page-home .kodawari {
  margin-bottom: 80px;
}
@media (min-width: 500px) {
  .page-home .kodawari {
    margin-bottom: 180px;
  }
}
@media (min-width: 500px) {
  .page-home .kodawari .item {
    display: flex;
  }
}
.page-home .kodawari .image {
  width: 85%;
}
@media (min-width: 500px) {
  .page-home .kodawari .image {
    width: 51%;
  }
}
@media (max-width: 499px) {
  .page-home .kodawari .image {
    margin-bottom: 40px;
  }
}
.page-home .kodawari .image img {
  width: 100%;
}
.page-home .kodawari .body {
  padding: 0 15px;
}
@media (min-width: 500px) {
  .page-home .kodawari .body {
    width: 480px;
    margin-left: 85px;
    padding: 0;
    padding-right: 15px;
  }
}
.page-home .kodawari .body .item-heading {
  margin-bottom: 25px;
  color: #004e97;
  font-weight: bold;
  font-size: 25px;
  line-height: 1.4;
}
@media (min-width: 500px) {
  .page-home .kodawari .body .item-heading {
    font-size: 32px;
  }
}
.page-home .kodawari .body p {
  font-size: 18px;
  line-height: 1.9;
}
.page-home .otodoke {
  position: relative;
  margin-bottom: 60px;
  padding-top: 100px;
  padding-bottom: 80px;
  background: url(../img/bg.jpg) center;
  color: #fff;
  text-align: center;
}
@media (min-width: 500px) {
  .page-home .otodoke {
    margin-bottom: 140px;
    padding-top: 300px;
    padding-bottom: 170px;
  }
}
@media (min-width: 1678px) {
  .page-home .otodoke {
    background-size: cover;
  }
}
.page-home .otodoke .heading {
  margin-bottom: 40px;
  font-size: 7vw;
  letter-spacing: .1em;
}
@media (min-width: 500px) {
  .page-home .otodoke .heading {
    margin-bottom: 60px;
    font-size: 60px;
  }
}
.page-home .otodoke .items {
  margin-bottom: 50px;
  display: flex;
}
@media (min-width: 500px) {
  .page-home .otodoke .items {
    justify-content: space-between;
  }
}
@media (max-width: 499px) {
  .page-home .otodoke .items {
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
  }
}
.page-home .otodoke .items > * {
  width: calc(50% - 10px);
}
@media (min-width: 500px) {
  .page-home .otodoke .items > * {
    width: calc(20% - 10px);
  }
}
@media (max-width: 499px) {
  .page-home .otodoke .items > * {
    margin: 5px;
  }
}
@media (max-width: 499px) {
  .page-home .otodoke .items > *:last-child {
    display: none;
  }
}
.page-home .otodoke .items img {
  width: 100%;
}
.page-home .otodoke .text {
  margin-bottom: 40px;
  padding-left: 15px;
  padding-right: 15px;
  line-height: 2.0;
  letter-spacing: .1em;
}
@media (max-width: 499px) {
  .page-home .otodoke .text {
    text-align: justify;
    letter-spacing: inherit;
  }
}
.page-home .otodoke .btn {
  display: inline-block;
  padding: 18px 20px;
  color: #231815;
  font-size: 5vw;
  font-weight: bold;
  text-decoration: none;
  background: #fff;
}
@media (min-width: 500px) {
  .page-home .otodoke .btn {
    padding: 18px 45px;
  }
}
@media (min-width: 500px) {
  .page-home .otodoke .btn {
    font-size: 24px;
  }
}
.page-home .otodoke .btn:after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 15px;
  margin-left: 30px;
  background: url(../img/arrow_black.svg) no-repeat center;
}
.page-home .otodoke .mask-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.page-home .otodoke .mask-top img {
  width: 100%;
}
.page-home .otodoke .mask-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.page-home .otodoke .mask-bottom img {
  width: 100%;
}
.page-home .company {
  margin-bottom: 40px;
}
@media (min-width: 500px) {
  .page-home .company {
    margin-bottom: 140px;
  }
}
@media (min-width: 500px) {
  .page-home .company .item {
    display: flex;
  }
}
.page-home .company .image {
  width: 85%;
}
@media (min-width: 500px) {
  .page-home .company .image {
    width: 51%;
  }
}
@media (max-width: 499px) {
  .page-home .company .image {
    margin-bottom: 40px;
  }
}
.page-home .company .image img {
  width: 100%;
}
.page-home .company .body {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 500px) {
  .page-home .company .body {
    width: 480px;
    margin-left: 85px;
    padding: 0;
    padding-right: 15px;
  }
}
.page-home .company .body dl {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 499px) {
  .page-home .company .body dl {
    font-size: 3.5vw;
  }
}
.page-home .company .body dl dt {
  width: 5em;
  margin-bottom: 1.5em;
  display: flex;
  justify-content: space-between;
  margin-right: 2em;
}
.page-home .company .body dl dd {
  width: calc(100% - 7em);
  margin-bottom: 1.5em;
}
.page-home .map iframe {
  width: 100%;
  height: 650px;
}

.anim-slideImage figure {
  position: relative;
}
.anim-slideImage figure:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.anim-slideImage.is-animated figure:after {
  width: 0;
  left: 100%;
}

/* contact
---------------------*/
.page-contact .heading {
  margin-bottom: 80px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}
.page-contact .contact-lead {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
}
@media (min-width: 500px) {
  .page-contact .contact-lead {
    text-align: center;
  }
}
.page-contact .contact-lead a {
  color: #e60012;
  text-decoration: none;
}
.page-contact .form-bg {
  margin-bottom: 100px;
  padding-top: 170px;
  padding-bottom: 150px;
  background: #dff2fc;
}
.page-contact .privacy-heading {
  margin-bottom: 20px;
  color: #2660ad;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}
.page-contact .privacy-content {
  margin-bottom: 100px;
  line-height: 2;
  font-size: 17px;
}

.Form-Item {
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  align-items: center;
}

@media (max-width: 499px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item-Label {
  width: 100%;
  max-width: 230px;
  letter-spacing: 0.05em;
  font-size: 22px;
  display: flex;
  justify-content: end;
  align-items: center;
}
@media (max-width: 499px) {
  .Form-Item-Label {
    flex-direction: row-reverse;
  }
}

@media (max-width: 499px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
    justify-content: flex-start;
  }
}
@media (max-width: 499px) and (max-width: 499px) {
  .Form-Item-Label {
    justify-content: left;
  }
}

.Form-Item-Label-Required {
  margin-left: 20px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #2660ad;
  color: #fff;
  font-size: 14px;
}
@media (max-width: 499px) {
  .Form-Item-Label-Required {
    margin-left: 0;
    margin-right: 10px;
  }
}

.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

@media (max-width: 499px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
@media (max-width: 499px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
  border: 1px solid black;
  border-radius: 6px;
  margin-left: 30px;
  padding-left: 1em;
  padding-right: 1em;
  height: 60px;
  flex: 1;
  width: calc(100% - 30px);
  font-size: 18px;
}

@media (max-width: 499px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid black;
  border-radius: 6px;
  margin-left: 30px;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  height: 337px;
  flex: 1;
  width: calc(100% - 30px);
  font-size: 18px;
}

@media (max-width: 499px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item.check-area a {
  color: #2660ad;
  text-decoration: none;
  font-weight: bold;
}

.Form-Btn {
  border: none;
  border-radius: 5px;
  margin-top: 50px;
  margin-bottom: 70px;
  margin-left: auto;
  margin-right: auto;
  width: 85px;
  display: block;
  letter-spacing: 0.05em;
  background: #2660ad;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  height: 37px;
  cursor: pointer;
}
.Form-Btn:disabled {
  opacity: .5;
}

@media (max-width: 499px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}
.check-area {
  margin-left: 255px;
}

@media (max-width: 499px) {
  .check-area {
    margin-left: 0;
    display: inline;
  }
}
.Form-Item .check-text span {
  color: #2660ad;
  font-weight: bold;
}

.Form-Item .check-area {
  font-size: 20px;
  margin-left: 20px;
}

.Form-Item.check-area input {
  margin-right: 20px;
  transform: scale(2);
}

.Form-Item.check-area .wpcf7-list-item-label {
  font-size: 20px;
}
.Form-Item.check-area .wpcf7-list-item-label span {
  color: #2660ad;
  font-weight: bold;
}

.form-error {
  display: block;
  margin-top: 5px;
  margin-left: 30px;
  margin-bottom: 20px;
  color: #e00;
}
@media (min-width: 500px) {
  .form-error {
    margin-left: 270px;
  }
}

.page-thanks .heading {
  margin-top: 170px;
  margin-bottom: 80px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}
.page-thanks p {
  margin-bottom: 150px;
  text-align: center;
}

/* Footer
---------------------*/
#footer {
  padding: 60px 15px 25px;
  color: #fff;
  background: url(../img/bg.jpg) center;
}
@media (min-width: 500px) {
  #footer {
    padding: 125px 0px 25px;
  }
}
@media (min-width: 1678px) {
  #footer {
    background-size: cover;
  }
}
#footer .inner {
  margin-bottom: 60px;
}
@media (min-width: 500px) {
  #footer .inner {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 499px) {
  #footer .inner .site {
    display: none;
  }
}
@media (min-width: 500px) {
  #footer .inner .cta {
    min-width: 600px;
  }
}
#footer .inner .cta .name {
  font-size: 29px;
  font-weight: bold;
}
#footer .inner .cta .address {
  margin-bottom: 15px;
  font-size: 3.9vw;
  line-height: 1.7;
}
@media (min-width: 500px) {
  #footer .inner .cta .address {
    font-size: 19px;
  }
}
@media (min-width: 500px) {
  #footer .inner .cta ul {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 500px) {
  #footer .inner .cta ul li {
    width: calc(50% - 12.5px);
  }
}
@media (max-width: 499px) {
  #footer .inner .cta ul li {
    margin: 25px 0;
  }
}
#footer .inner .cta ul li a {
  display: block;
  padding: 20px 15px;
  color: #231815;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background: #fff;
}
#footer .inner .cta ul li a:after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 15px;
  margin-left: 30px;
  background: url(../img/arrow_black.svg) no-repeat center;
}
#footer nav {
  margin-bottom: 60px;
}
@media (max-width: 499px) {
  #footer nav {
    display: none;
  }
}
#footer nav ul {
  width: 720px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}
#footer nav ul a {
  color: #fff;
  text-decoration: none;
}
#footer .copy {
  text-align: center;
}

#xsnav-wrap .menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #fff;
  transition: all 0.3s;
  padding-bottom: 5px;
}
@media (min-width: 500px) {
  #xsnav-wrap .menu-btn {
    display: none;
  }
}
#xsnav-wrap .menu-btn span,
#xsnav-wrap .menu-btn span:before,
#xsnav-wrap .menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #004e97;
  position: absolute;
  transition: all 0.3s;
}
#xsnav-wrap .menu-btn span:before {
  bottom: 8px;
}
#xsnav-wrap .menu-btn span:after {
  top: 8px;
}
#xsnav-wrap .menu-btn:after {
  content: "menu";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  color: #004e97;
  font-size: 12px;
  text-align: center;
}
#xsnav-wrap #menu-btn-check {
  display: none;
}
#xsnav-wrap #menu-btn-check:checked ~ .menu-btn {
  background: #fff;
}
#xsnav-wrap #menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}
#xsnav-wrap #menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#xsnav-wrap #menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
#xsnav-wrap #menu-btn-check:checked ~ .menu-btn:after {
  content: "close";
}
#xsnav-wrap #menu-btn-check:checked ~ .xsnav-content {
  left: 0;
  /*メニューを画面内へ*/
}
#xsnav-wrap .xsnav-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 80;
  transition: all 0.3s;
  background-color: #004e97;
}
#xsnav-wrap .xsnav-content .xsnav-content-inner {
  position: absolute;
  top: 50px;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
  overflow-y: auto;
}
#xsnav-wrap .xsnav-content ul.menu {
  padding: 0px 0 0 0;
}
#xsnav-wrap .xsnav-content li {
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  list-style: none;
}
#xsnav-wrap .xsnav-content li a {
  display: block;
  position: relative;
  width: 100%;
  padding: 12px 25px;
  font-size: 20px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  position: relative;
}
#xsnav-wrap .xsnav-content li a small {
  display: none;
}
#xsnav-wrap .xsnav-content li a a {
  width: 2.5em;
  padding-left: 0;
  padding-right: 0;
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.05);
  text-align: center;
}
#xsnav-wrap .xsnav-content .sub-menu {
  padding: 0;
}
#xsnav-wrap .xsnav-content .sub-menu a {
  padding-left: 40px;
  background: rgba(0, 0, 0, 0.1);
}
#xsnav-wrap .xsnav-content .sub-menu-active > .sub-menu {
  display: block;
}

/*
サイト独自のナビデザイン上書き
*/
#xsnav-wrap .xsnav-content .xsnav-content-inner {
  top: 30%;
  text-align: center;
}

#xsnav-wrap .xsnav-content ul {
  border-top: solid 1px rgba(0, 0, 0, 0.1);
}
#xsnav-wrap .xsnav-content ul a {
  padding-top: 1em;
  padding-bottom: 1em;
}

/*# sourceMappingURL=style.css.map */
