html, body {
  font-size: 16px;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
}
@media screen and (max-width: 1029px){
  html,body{
    overflow-x: hidden!important;
    overflow-y: scroll;
  }
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.container {
  width: 100%;
  max-width: 1684px;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.sec {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media screen and (min-width: 1030px) {
  .sec {
    padding-top: 135px;
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 1029px) {
  .hidden-sm {
    display: none!important;
  }
}

@media screen and (min-width: 1030px) {
  .hidden-lg {
    display: none!important;
  }
}


.headline {
  font-size: 1.4375rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 5px;
}

@media screen and (min-width: 1030px) {
  .headline {
    font-size: 3.4375rem;
    margin-bottom: 10px;
  }
}


/*
 * Header
 */
.header {
  display: flex;
  min-width: 0;
  height: 72px;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}

@media screen and (min-width: 1030px) {
  .header {
    height: 158px;
  }
}

.header-logo-img {
  /*max-height: 36px;*/
  max-height: 30px;
}

@media screen and (min-width: 1030px) {
  .header-logo-img {
    max-height: 80px;
  }
}


/*
 * Page Title
 */
.page-title-sec {
  padding-top: 53px;
  position: relative;
}

@media screen and (min-width: 1030px) {
  .page-title-sec {
    padding-top: 92px;
  }
}

.page-title-sec::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 20.5vw;
  bottom: 0;
  background-color: #4169E1;
  z-index: -1;
}

.page-title-sec::after {
  content: '';
  display: block;
  position: absolute;
  top: 32px;
  left: 58.33vw;
  right: 0;
  bottom: -20px;
  z-index: -2;
  background-size: 2px;
  background-position: -2px -2px;
  background-image: url('../img/common/orange_dot.svg');
  background-repeat: repeat;
}

@media screen and (min-width: 1030px) {
  .page-title-sec::after {
    left: 58.33vw;
    bottom: -82px;
    background-size: 7px;
    background-position: -2px -2px;
  }
}

.page-title {
  text-align: center;
}

.page-title--en {
  color: #ffffff;
  font-size: 2.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  opacity: 0.5;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  margin-bottom: 24px;
}

@media screen and (max-width: 1029px) {
  .page-title--en {
    display: none;
  }
}

.page-title--ja {
  color: #ffffff;
  font-size: 1.5625rem;
  font-weight: normal;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 1030px) {
  .page-title--ja {
    font-size: 5.3rem;
  }
}

.page-title-bg,
.page-title-bg--top {
  display: flex;
  min-width: 0;
  height: 175px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 1030px) {
  .page-title-bg {
    height: 450px;
  }
}

.page-title-bg--top {
  height: 258px;
}

@media screen and (min-width: 1030px) {
  .page-title-bg--top {
    height: 830px;
  }
}


/*
 * Global Nav
 */
.global-nav-toggle-btn {
  width: 38px;
  height: 38px;
  background-color: #ffffff;
  border-radius: 50%;
  border: 1px solid #A2C2E6;
  position: fixed;
  top: 72px;
  right: 24px;
  z-index: 999;
  cursor: pointer;
}

@media screen and (min-width: 1030px) {
  .global-nav-toggle-btn {
    display: none;
  }
}

.global-nav-toggle-btn.is-active {
  background-color: transparent;
  border: 1px solid #ffffff;
}

.global-nav-toggle-btn-inner,
.global-nav-toggle-btn-inner::before,
.global-nav-toggle-btn-inner::after {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #A2C2E6;
  user-select: none;
}

.global-nav-toggle-btn-inner {
  position: absolute;
  left: 9px;
  top: 18px;
}

.global-nav-toggle-btn.is-active .global-nav-toggle-btn-inner {
  background-color: transparent;
}

.global-nav-toggle-btn-inner::before,
.global-nav-toggle-btn-inner::after {
  content: '';
  position: absolute;
  transform-origin: center center;
}

.global-nav-toggle-btn.is-active .global-nav-toggle-btn-inner::before,
.global-nav-toggle-btn.is-active .global-nav-toggle-btn-inner::after {
  background-color: #ffffff;
}

.global-nav-toggle-btn-inner::before {
  top: 7px;
  transition: top 0.125s 0.125s, transform 0.125s;
}

.global-nav-toggle-btn-inner::after {
  bottom: 7px;
  transition: bottom 0.125s 0.125s, transform 0.125s;
}

.global-nav-toggle-btn.is-active .global-nav-toggle-btn-inner::before {
  top: 0;
  transform: rotate(45deg);
  transition: top 0.125s, transform 0.125s 0.125s;
}

.global-nav-toggle-btn.is-active .global-nav-toggle-btn-inner::after {
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 0.125s, transform 0.125s 0.125s;
}

@media screen and (max-width: 1029px) {
  .global-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 100%;
    background-color: #4169E1;
    z-index: 990;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    transition: bottom 0s 0.25s, opacity 0.25s;
  }

  .global-nav.is-active {
    bottom: 0;
    opacity: 1;
    transition: bottom 0s, opacity 0.25s;
  }
}

@media screen and (max-width: 1029px) {
  .global-nav-list {
    margin-top: 126px;
    margin-bottom: 40px;
    padding: 0;
    position: relative;
  }

  .global-nav-list::before {
    content: '';
    display: block;
    height: 54px;
    position: absolute;
    top: -54px;
    left: 0;
    right: 33.33%;
    background-image: url('../img/common/blue_dot.svg');
    background-repeat: repeat;
  }
}

@media screen and (min-width: 1030px) {
  .global-nav-list {
    display: flex;
    min-width: 0;
    align-items: center;
    padding-top: 27px;
    padding-bottom: 27px;
  }
}

@media screen and (max-width: 1029px) {
  .global-nav-list__item {
    border-bottom: 1px solid #A2C2E6;
  }
}

@media screen and (min-width: 1030px) {
  .global-nav-list__item + .global-nav-list__item {
    margin-left: 100px;
  }
}

.global-nav-list__item a {
  color: inherit;
  display: block;
  text-decoration: none;
}

@media screen and (max-width: 1029px) {
  .global-nav-list__item a {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.global-nav-label--en,
.global-nav-label--ja {
  display: block;
  text-align: center;
  letter-spacing: 1px;
}

.global-nav-label--en {
  color: #A2C2E6;
  font-size: 0.875rem;
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
}

.global-nav-label--ja {
  color: #ffffff;
  font-size: 0.875rem;
  margin-top: 8px;
}

@media screen and (min-width: 1030px) {
  .global-nav-label--ja {
    color: #003399;
    font-size: 1.125rem;
    margin-top: 10px;
  }
}


/*
 * Footer
 */
.footer-nav {
  background: #4169E1;
}

@media screen and (min-width: 1030px) {
  .footer-nav {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(#4169E1, #003399);
  }
}

@media screen and (min-width: 1030px) {
  .footer-nav-list {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 1029px) {
  .footer-nav-list__item {
    border-bottom: 1px solid #A2C2E6;
  }
}

@media screen and (min-width: 1030px) {
  .footer-nav-list__item + .footer-nav-list__item {
    margin-left: 140px;
  }
}

.footer-nav-list__item a {
  color: inherit;
  display: block;
  text-decoration: none;
}

@media screen and (max-width: 1029px) {
  .footer-nav-list__item a {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.footer-nav-label--en,
.footer-nav-label--ja {
  display: block;
  text-align: center;
  letter-spacing: 1px;
}

.footer-nav-label--en {
  color: #A2C2E6;
  font-size: 0.875rem;
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
}

.footer-nav-label--ja {
  color: #ffffff;
  font-size: 0.875rem;
  margin-top: 8px;
}

@media screen and (min-width: 1030px) {
  .footer-nav-label--ja {
    font-size: 1.125rem;
    margin-top: 10px;
  }
}

.footer-bottom {
  background-color: #ffffff;
  padding-top: 20px;
  padding-bottom: 18px;
  text-align: center;
}

@media screen and (min-width: 1030px) {
  .footer-bottom {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}

.footer-logo {
  display: inline-block;
}

.footer-logo-img {
  /*max-height: 36px;*/
  max-height: 30px;
}

@media screen and (min-width: 1030px) {
  .footer-logo-img {
    max-height: 90px;
  }
}

.footer-address {
  font-size: 0.75rem;
  margin-top: 12px;
}

@media screen and (min-width: 1030px) {
  .footer-address {
    font-size: 1.125rem;
    margin-top: 24px;
  }
}

.copyright {
  font-size: 0.625rem;
  margin-top: 18px;
}

@media screen and (min-width: 1030px) {
  .copyright {
    font-size: 0.875rem;
    margin-top: 46px;
  }
}

/*
 * Scroll Button
 */
.scroll-btn {
  display: block;
  color: inherit;
  width: 38px;
  height: 38px;
  margin-left: auto;
  border-radius: 3px;
  background-color: #A2C2E6;
  position: fixed;
  bottom: 40px;
  right: 24px;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (min-width: 1030px) {
  .scroll-btn {
    width: 72px;
    height: 72px;
  }
}

.scroll-btn::before,
.scroll-btn::after {
  content: '';
  position: absolute;
  left: 9px;
  user-select: none;
}

@media screen and (min-width: 1030px) {
  .scroll-btn::before,
  .scroll-btn::after {
    left: 16px;
  }
}

.scroll-btn::before {
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  top: 9px;
}

@media screen and (min-width: 1030px) {
  .scroll-btn::before {
    width: 40px;
    height: 5px;
    top: 16px;
  }
}

.scroll-btn::after {
  width: 0;
  height: 0;
  bottom: 9px;
  border-bottom: 12px solid #ffffff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

@media screen and (min-width: 1030px) {
  .scroll-btn::after {
    bottom: 16px;
    border-bottom: 22px solid #ffffff;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
  }
}


.section-row {
  display: flex;
  min-width: 0;
}

.section-left {
  flex: 1 1 auto;
}

.section-right {
  font-size: 2.625rem;
  flex: 0 0 1.2em;
  margin-left: 20px;
}

@media screen and (min-width: 1030px) {
  .section-right {
    font-size: 11.0625rem;
    margin-left: 60px;
  }
}

.section-name {
  color: #A2C2E6;
  font-size: 1em;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  opacity: 0.6;
  line-height: 1;
  letter-spacing: 1px;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
  transform: rotate(180deg);
}

.arrow-container {
  border-right: 1px solid #D3D3D3;
  padding-top: 28px;
  position: relative;
}

@media screen and (min-width: 1030px) {
  .arrow-container {
    border-right: 2px solid #D3D3D3;
    padding-top: 50px;
  }
}

.arrow-container::before {
  content: '';
  display: block;
  height: 1px;
  background-color: #D3D3D3;
  position: absolute;
  top: 0;
  left: -100vw;
  right: 0;
}

@media screen and (min-width: 1030px) {
  .arrow-container::before {
    height: 2px;
  }
}

.arrow-container::after {
  content: '';
  display: block;
  width: 10px;
  height: 13.66px;
  background-image: url('../img/common/arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  position: absolute;
  right: -1px;
  bottom: 0;
}

@media screen and (min-width: 1030px) {
  .arrow-container::after {
    width: 22.14px;
    height: 28.67px;
    right: -2px;
  }
}

.section-text-container,
.section-text-container--without-bg-orange {
  padding-right: 38px;
  position: relative;
}

@media screen and (min-width: 1030px) {
  .section-text-container,
  .section-text-container--without-bg-orange {
    padding-right: 31%;
  }
}

.section-text-container::after {
  content: '';
  display: block;
  background-size: 2px;
  background-position: -2px -2px;
  background-image: url('../img/common/orange_dot.svg');
  background-repeat: repeat;
  position: absolute;
  top: 24px;
  left: 0;
  right: 19px;
  bottom: -144px;
  z-index: -2;
}

@media screen and (min-width: 1030px) {
  .section-text-container::after {
    background-size: 7px;
    top: 100%;
    right: 60px;
    bottom: -326px;
    z-index: -2;
  }
}

.section-text,
.section-text--bg-blue {
  font-size: 0.875rem;
  line-height: 1.7;
}

.section-text {
  padding-bottom: 20px;
}

@media screen and (min-width: 1030px) {
  .section-text {
    font-size: 1rem;
    padding-bottom: 50px;
    line-height: 2.25;
  }

  .section-text--bg-blue {
    font-size: 1.5625rem;
    line-height: 1.8;
  }
}

.section-text--bg-blue {
  color: #ffffff;
  padding-top: 22px;
  padding-right: 14px;
  position: relative;
}

@media screen and (min-width: 1030px) {
  .section-text--bg-blue {
    padding-top: 60px;
    padding-right: 40px;
  }
}

.section-text--bg-blue::before {
  content: '';
  display: block;
  background-color: #4169E1;
  position: absolute;
  top: 0;
  left: -100vw;
  right: 0;
  bottom: -120px;
  z-index: -1;
}

@media screen and (min-width: 1030px) {
  .section-text--bg-blue::before {
    bottom: -266px;
  }
}

.section-text .accent {
  color: #FF0000;
}

.section-text--bg-blue .accent {
  color: #FFCC33;
}

@media screen and (max-width: 1029px) {
  .section-img,
  .section-img--bg-orange {
    padding-top: 20px;
    padding-left: 25px;
    margin-right: calc(-44px - 2.625rem);
    position: relative;
  }
}

@media screen and (min-width: 1030px) {
  .section-img,
  .section-img--bg-orange {
    padding-top: 60px;
    padding-left: 4.9%;
    position: relative;
  }
}

.section-img--bg-orange::before {
  content: '';
  display: block;
  background-size: 2px;
  background-position: -2px -2px;
  background-image: url('../img/common/orange_dot.svg');
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: calc(23px + 44px + 2.625rem);
  bottom: 26px;
  z-index: -2;
}

@media screen and (min-width: 1030px) {
  .section-img--bg-orange::before {
    background-size: 7px;
    right: 60px;
    bottom: calc(100% - 326px);
  }
}

.section-img img {
  width: 100%;
}

/*
 * Top
 */
.top-copy {
  color: #ffffff;
  font-size: 1.875rem;
  line-height: 1.34;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 1030px) {
  .top-copy {
    font-size: 5.625rem;
    line-height: 1.44;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  }
}

.profile-img {
  position: relative;
}

.profile-name-container {
  color: #ffffff;
  top: calc(50% - 18px);
  right: 7.3%;
  position: absolute;
}

@media screen and (min-width: 1030px) {
  .profile-name-container {
    right: 16.8%;
  }
}

.profile-post {
  font-size: 0.875rem;
}

@media screen and (min-width: 1030px) {
  .profile-post {
    font-size: 1.0625rem;
  }
}

.profile-name {
  font-size: 1.125rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  margin-top: 10px;
}

@media screen and (min-width: 1030px) {
  .profile-name {
    font-size: 1.875rem;
    margin-top: 14px;
  }
}

.contact-section {
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: #A2C2E6;
  background-image: linear-gradient(rgba(255, 255, 255, 0.3) 40%, transparent 20%);
  background-size: 5px 5px;
  background-position: 0 -2px;
  text-align: center;
}

@media screen and (min-width: 1030px) {
  .contact-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.contact-section-container {
  max-width: 1046px;
}

.contact-section-inner {
  padding: 20px 17px;
  background-color: #ffffff;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
}

@media screen and (min-width: 1030px) {
  .contact-section-inner {
    padding: 50px 17px;
  }
}

.contact-section-headline {
  font-size: 1.4375rem;
  font-weight: 300;
  margin-bottom: 18px;
}

@media screen and (min-width: 1030px) {
  .contact-section-headline {
    font-size: 4rem;
    margin-bottom: 38px;
  }
}

.contact-tel {
  color: #003399;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.contact-tel-img {
  width: 25px;
  height: 21.87px;
  vertical-align: bottom;
  margin-right: 6px;
}

@media screen and (min-width: 1030px) {
  .contact-tel-img {
    width: 63px;
    height: 55.12px;
    margin-right: 13px;
  }
}

.contact-tel-number {
  font-size: 1.875rem;
  font-family: 'Oswald', sans-serif;
  padding-bottom: 1px;
}

@media screen and (min-width: 1030px) {
  .contact-tel-number {
    font-size: 4.5rem;
    padding-bottom: 5px;
  }
}

.contact-time {
  margin-top: 18px;
  font-size: 0.875rem;
}

@media screen and (min-width: 1030px) {
  .contact-time {
    margin-top: 28px;
    font-size: 1.5625rem;
  }
}

.contact-link {
  color: #ffffff;
  font-size: 0.875rem;
  display: inline-block;
  width: 100%;
  max-width: 730px;
  background-color: #003399;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  padding: 17px 10px;
  margin-top: 18px;
  box-sizing: border-box;
}

@media screen and (min-width: 1030px) {
  .contact-link {
    font-size: 2.1875rem;
    text-decoration: none;
    padding: 40px 10px;
    margin-top: 28px;
  }
}


/*
 * Service
 */
.support-section {
  padding-bottom: 0;
}

@media screen and (max-width: 1029px) {
  .support-section .section-img--bg-orange::after {
    content: '';
    display: block;
    position: absolute;
    background-image: url('../img/common/blue_dot.svg');
    background-repeat: repeat;
    top: 20px;
    left: 100px;
    right: 0;
    bottom: -20px;
    z-index: -1;
  }
}

.example-section {
  position: relative;
  padding-top: 50px;
  padding-bottom: 25px;
}

@media screen and (min-width: 1030px) {
  .example-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.example-section::before {
  content: '';
  display: block;
  position: absolute;
  top: -48px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #003399;
  z-index: -2;
}

@media screen and (min-width: 1030px) {
  .example-section::before {
    top: -130px;
  }
}

.example-row {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 1030px) {
  .example-row {
    display: flex;
    min-width: 0;
    flex-direction: row;
    align-items: center;
  }
}

@media screen and (max-width: 1029px) {
  .example-arrow {
    align-self: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1030px) {
  .example-arrow {
    flex: 0 0 33px;
    margin-left: 21px;
    margin-right: 21px;
  }
}

.example-arrow::before {
  content: '';
  display: block;
  border-top: 22px solid #A2C2E6;
  border-bottom: none;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
}

@media screen and (min-width: 1030px) {
  .example-arrow::before {
    content: '';
    display: block;
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
    border-left: 33px solid #A2C2E6;
    border-right: none;
  }
}

.example-right {
  color: #FFCC33;
  line-height: 1.59;
  padding: 15px;
  box-sizing: border-box;
  border: 2px solid #FFCC33;
}

@media screen and (min-width: 1030px) {
  .example-right {
    flex: 0 0 490px;
    font-size: 1.5625rem;
    line-height: 1.8;
    padding: 24px 26px;
  }
}

.example-section-headline {
  color: #ffffff;
  font-size: 1.4375rem;
  font-weight: 300;
  margin-bottom: 20px;
}

@media screen and (min-width: 1030px) {
  .example-section-headline {
    font-size: 3.4375rem;
    margin-bottom: 40px;
  }
}

.example-text {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.72;
}

@media screen and (min-width: 1030px) {
  .example-text {
    font-size: 1.25rem;
    line-height: 2;
  }
}


/*
 * Company
 */
.company-section .arrow-container {
  padding-top: 10px;
}

@media screen and (min-width: 1030px) {
  .company-section .arrow-container {
    padding-top: 45px;
  }
}

.company-table-container {
  padding-right: 20px;
}

@media screen and (min-width: 1030px) {
  .company-table-container {
    padding-right: 86px;
  }
}

.company-table {
  width: 100%;
}

.company-table th,
.company-table td {
  font-size: 0.875rem;
  font-weight: 400;
  vertical-align: middle;
  border-bottom: 1px solid #A2C2E6;
  line-height: 1.5;
}

@media screen and (max-width: 1029px) {
  .company-table th,
  .company-table td {
    display: block;
    text-align: left;
  }
}

@media screen and (min-width: 1030px) {
  .company-table th,
  .company-table td {
    font-size: 1.125rem;
  }
  .company-table-client{
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.company-table th {
  color: #808080;
}


@media screen and (max-width: 1029px) {
  .company-table th {
    border-bottom: none;
    padding-top: 16px;
  }
}

@media screen and (min-width: 1030px) {
  .company-table th {
    text-align: center;
    width: 240px;
    padding: 42px 0;
  }
}

@media screen and (max-width: 1029px) {
  .company-table td {
    padding-bottom: 16px;
  }
}

@media screen and (min-width: 1030px) {
  .company-table td {
    padding-left: 68px;
  }
}


  .company-name {
    display: block;
  }



.location-section {
  padding-bottom: 0;
}

@media screen and (max-width: 1029px) {
  .map-container {
    height: 270px;
    padding-top: 20px;
    margin-left: -24px;
    margin-right: calc(-20px - 2.625rem - 24px);
  }
}

@media screen and (min-width: 1030px) {
  .map-container {
    height: 760px;
    padding-top: 60px;
    margin-left: calc((100% + 70px + 11.0625rem - 100vw) / 2);
    margin-right: calc((100% + 70px + 11.0625rem - 100vw) / 2 - 70px - 11.0625rem);
  }
}

.map-container iframe {
  width: 100%;
  height: 100%;
}


/*
 * Privacy Policy
 */
.policy-section .arrow-container {
  padding-top: 10px;
}

@media screen and (min-width: 1030px) {
  .policy-section .arrow-container {
    padding-top: 20px;
  }
}

.policy-container {
  font-size: 0.875rem;
  padding-right: 20px;
  line-height: 1.7;
}

@media screen and (min-width: 1030px) {
  .policy-container {
    font-size: 1rem;
    padding-right: 86px;
    line-height: 2.25;
  }
}

.policy-container section {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media screen and (min-width: 1030px) {
  .policy-container section {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

.policy-container section + section {
  border-top: 1px solid #A2C2E6;
}

.policy-container h3 {
  color: #4169E1;
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 12px;
  line-height: 1.4;
}

@media screen and (min-width: 1030px) {
  .policy-container h3 {
    font-size: 1.5625rem;
    margin-bottom: 20px;
    line-height: 1.4;
  }
}

.policy-container ol,
.policy-container ul {
  padding-left: 1.5em;
}

.policy-container ol.circled-decimal {
  counter-reset: my-counter;
  list-style: none;
  padding-left: 1.25em;
}

.policy-container ol.circled-decimal > li {
  position: relative;
}

.policy-container ol.circled-decimal > li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  display: flex;
  font-size: 0.6875em;
  width: 13px;
  height: 13px;
  line-height: 13px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #000000;
  position: absolute;
  top: 3px;
  left: -19px;
}

@media screen and (min-width: 1030px) {
  .policy-container ol.circled-decimal > li::before {
    font-size: 0.6875em;
    width: 14px;
    height: 14px;
    line-height: 14px;
    top: 10px;
    left: -20px;
  }
}

.policy-container ol.small {
  font-size: 0.75rem;
  line-height: 1.7rem;
}

@media screen and (min-width: 1030px) {
  .policy-container ol.small {
    font-size: 0.75rem;
    line-height: 2.25rem;
  }
}

.policy-dl dt::before {
  content: '◆ ';
}

@media screen and (max-width: 1029px) {
  .policy-dl dd {
    padding-left: 1.5em;
  }
}

@media screen and (min-width: 1030px) {
  .policy-dl-row {
    display: flex;
  }

  .policy-dl dt::after {
    content: '：';
  }
}


/*
 * Contact Form
 */
.contact-form {
  padding-right: 20px;
}

@media screen and (min-width: 1030px) {
  .contact-form {
    padding-right: 86px;
  }
}

.form-message {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 42px;
}

@media screen and (min-width: 1030px) {
  .form-message {
    font-size: 1rem;
    line-height: 1.875;
    margin-bottom: 52px;
  }
}

.form-message-note {
  color: #808080;
  font-size: 0.75rem;
}

.form-row + .form-row {
  margin-top: 30px;
}

@media screen and (min-width: 1030px) {
  .form-row + .form-row {
    margin-top: 76px;
  }
}

.form-label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 10px;
}

@media screen and (min-width: 1030px) {
  .form-label {
    font-size: 1.125rem;
  }
}

.form-label.required::after {
  content: '必須';
  color: #ffffff;
  font-size: 0.875rem;
  background-color: #ff0000;
  border-radius: 2px;
  line-height: 1;
  padding: 2px 3px;
  margin-left: 6px;
}

@media screen and (min-width: 1030px) {
  .form-label.required::after {
    font-size: 1rem;
    padding: 3px 4px;
    margin-left: 8px;
  }
}

.form-input,
.form-input--multiline {
  width: 100%;
  box-sizing: border-box;
  height: 37px;
  border: 1px solid #808080;
  border-radius: 3px;
  font-size: 1rem;
  padding-left: 5px;
  -webkit-appearance: none; 
}

@media screen and (min-width: 1030px) {
  .form-input,
  .form-input--multiline {
    height: 74px;
    border-radius: 5px;
    font-size: 1.125rem;
    padding-left: 14px;
  }
}

.form-input--multiline {
  height: 180px;
  padding-top: 5px;
}

@media screen and (min-width: 1030px) {
  .form-input--multiline {
    height: 400px;
    padding-top: 20px;
  }
}

.form-button-container {
  text-align: center;
  margin-top: 30px;
}

@media screen and (min-width: 1030px) {
  .form-button-container {
    margin-top: 100px;
  }
}
input[type="submit"], input[type="reset"], input[type="button"]{
  -webkit-appearance:none;
  border-radius: 0;
}
.form-button {
  color: #ffffff;
  font-size: 0.875rem;
  width: 100%;
  max-width: 730px;
  height: 47px;
  border-radius: 0;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  background-color: #003399;
  border: none;
  cursor: pointer;
}

@media screen and (min-width: 1030px) {
  .form-button {
    font-size: 1.875rem;
    height: 100px;
  }
  .form-address-rep_txt{
    font-size: 1.125rem;
  }
  .form-address-rep{
    text-align: center;
  }
}
.form-address-rep{
  line-height: 1.5;
  margin-top: 40px;
}
.form-address-rep_txt{
  margin-bottom: 10px;
}
