@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@400;500&family=Open+Sans&family=Palanquin+Dark&display=swap");
body {
  -webkit-text-size-adjust: 100%;
  margin: 0 auto;
  width: 100%;
  overflow-x: hidden;
  font-family: "Microsoft JhengHei", Myriad Pro, Myriad, Aria, sans-serif;
  background-color: #F9F9F9;
  color: #707070;
  padding-top: 0;
  letter-spacing: 1px;
}

body.hidden {
  overflow: hidden;
}

a {
  color: #F08300;
  text-decoration: none;
}

.en {
  font-family: "Open Sans", sans-serif;
  letter-spacing: 1px;
}

.title_font {
  font-family: "Noto Serif TC", "Microsoft JhengHei", Myriad Pro, Myriad, Aria, sans-serif;
}

select::-ms-expand {
  display: none;
}

select option:disabled {
  background-color: rgba(214, 214, 214, 0.5);
}

input::-ms-expand {
  display: none;
}

select {
  -webkit-appearance: inherit;
  font-family: "Microsoft JhengHei", Myriad Pro, Myriad, Aria, sans-serif;
  outline: 0;
  background-color: white;
}

button {
  font-family: "Microsoft JhengHei", Myriad Pro, Myriad, Aria, sans-serif;
  background-color: transparent;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: 0;
}

.page_bottom {
  position: relative;
  display: block;
  text-align: right;
  padding-right: 100px;
  z-index: 10;
  margin-top: 50px;
  height: 40px;
  padding-left: 100px;
}

.page_bottom .button {
  position: absolute;
  height: 100%;
  top: 0;
  pointer-events: all;
  cursor: pointer;
}

.page_bottom .button.prev {
  left: 0;
}

.page_bottom .button.next {
  right: 0;
}

.page_bottom .button.disable {
  opacity: .2;
  pointer-events: none;
  cursor: none;
}

.page_bottom .numbox {
  position: relative;
  float: right;
  line-height: 24px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 30px;
}

.page_bottom .numbox .num {
  position: relative;
  color: #707070;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  padding: 0 2px;
  margin: 0 2px;
}

.page_bottom .numbox .num.active {
  color: #F08300;
}

@media only screen and (min-width: 1200px) {
  .page_bottom .numbox .num:hover {
    color: #F08300;
  }
}

.link_button {
  position: relative;
  width: 350px;
  height: 65px;
  text-align: center;
  display: block;
  line-height: 65px;
  border: 1px solid #E5E5E5;
  border-radius: 13px;
  margin: 0 auto;
  font-family: "Palanquin Dark", serif;
}

.link_button .text {
  position: relative;
  z-index: 5;
}

.link_button::before {
  content: '';
  position: absolute;
  width: 98%;
  height: 93%;
  background-color: #ffffff;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  z-index: -1;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.link_button::after {
  content: '';
  -webkit-box-shadow: 2px -1px 4px 6px #00000059;
          box-shadow: 2px -1px 4px 6px #00000059;
  position: absolute;
  width: 98%;
  height: 98%;
  right: -4px;
  bottom: -4px;
  border-radius: 10px;
  z-index: 2;
  opacity: .05;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media only screen and (min-width: 1200px) {
  .link_button:hover::before {
    width: 100%;
    height: 100%;
  }
  .link_button:hover::after {
    right: -0;
    bottom: -0;
    width: 100%;
    height: 100%;
    opacity: .2;
    -webkit-box-shadow: 1px 0px 9px 5px #00000059;
            box-shadow: 1px 0px 9px 5px #00000059;
  }
}

.lb-data .lb-close {
  background-image: none !important;
  position: relative;
  width: 70px !important;
  height: 70px !important;
  background-size: 0;
}

.lb-data .lb-close::before {
  content: '';
  position: absolute;
  width: 39px;
  height: 2px;
  background-color: #fff;
  -webkit-transform: rotate(42deg);
  transform: rotate(42deg);
  top: 21px;
  left: 40px;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.lb-data .lb-close::after {
  content: '';
  position: absolute;
  width: 39px;
  height: 2px;
  background-color: #fff;
  -webkit-transform: rotate(-42deg);
  transform: rotate(-42deg);
  top: 21px;
  left: 28px;
  right: auto;
  -webkit-transform-origin: top right;
  transform-origin: top right;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

#gotop {
  position: fixed;
  width: 70px;
  height: 70px;
  background-color: white;
  z-index: 99;
  right: 35px;
  bottom: 35px;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  cursor: pointer;
  font-family: "Palanquin Dark", serif;
}

#gotop::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 14px 8px;
  border-color: transparent transparent #f08400 transparent;
  display: block;
  position: relative;
}

#gotop::after {
  content: '';
  border: 1px solid #f08400;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#gotop div {
  font-size: 14px;
  display: block;
  width: 100%;
  margin-top: 9px;
  color: #F08300;
  position: relative;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media only screen and (min-width: 1200px) {
  #gotop:hover div {
    margin-top: 16px;
  }
  #gotop:hover::after {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

br {
  font-family: sans-serif;
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

header .logo {
  position: absolute;
  width: 136px;
  height: 136px;
  left: 35px;
  top: 35px;
  background-color: #ffffffe8;
  padding: 26px;
  z-index: 5;
}

header .nav {
  position: absolute;
  background-color: #FFFFFF;
  width: 70px;
  height: 70px;
  right: 35px;
  top: 35px;
  z-index: 5;
  cursor: pointer;
}

header .nav::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #707070;
  -webkit-transform: rotate(42deg);
          transform: rotate(42deg);
  top: 21px;
  left: 22px;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

header .nav::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #707070;
  -webkit-transform: rotate(-42deg);
          transform: rotate(-42deg);
  top: 21px;
  right: 21px;
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

header .nav.close::before, header .nav.close::after {
  width: 39px;
  -webkit-transition: all .8s ease .5s;
  transition: all .8s ease .5s;
}

header .nav.close div {
  width: 0 !important;
  -webkit-transform: translateY(-50%) translateX(32px) !important;
          transform: translateY(-50%) translateX(32px) !important;
}

header .nav div {
  position: absolute;
  width: 32px;
  height: 2px;
  background-color: #707070;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: -16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .nav div:nth-child(2) {
  margin-top: -11px;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

header .nav div:nth-child(3) {
  margin-top: 11px;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

@media only screen and (min-width: 1200px) {
  header .nav:hover div {
    width: 26px;
    -webkit-transform: translateY(-50%) translateX(6px);
            transform: translateY(-50%) translateX(6px);
  }
  header .nav:hover div:nth-child(1) {
    width: 22px;
    -webkit-transform: translateY(-50%) translateX(10px);
            transform: translateY(-50%) translateX(10px);
  }
}

#menu_box {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 998;
  overflow: hidden;
  background-color: white;
  display: none;
}

#menu_box.show .shadow {
  top: calc(100vh - 440px);
  -webkit-transition: all .8s ease .5s;
  transition: all .8s ease .5s;
}

#menu_box.show .link_box {
  opacity: 1;
  -webkit-transition: all .8s ease .5s;
  transition: all .8s ease .5s;
}

#menu_box .link_box {
  position: absolute;
  font-size: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1012px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #F08300;
  opacity: 0;
  -webkit-transition: all .8s ease;
  transition: all .8s ease;
}

#menu_box .link_box .link {
  position: relative;
  padding: 20px 17px;
  letter-spacing: 2px;
  font-weight: 300;
  color: #707070;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

@media only screen and (min-width: 1200px) {
  #menu_box .link_box .link:hover {
    color: #F08300;
  }
}

#menu_box .shadow {
  position: absolute;
  z-index: -1;
  left: -100px;
  top: 100vh;
  width: 500px;
  height: 500px;
  -webkit-transition: all .8s ease;
  transition: all .8s ease;
  pointer-events: none;
}

#menu_box .shadow::after {
  content: '';
  background-image: url(../images/shadow.png);
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

footer {
  position: relative;
  background-color: white;
}

footer .box {
  position: relative;
  width: 90%;
  max-width: 1530px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  padding-top: 72px;
  padding-bottom: 80px;
  font-size: 16px;
  line-height: 24px;
  color: #707070;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .box .logo {
  position: relative;
  width: 125px;
  margin-right: 70px;
}

footer .box .text {
  position: relative;
  width: 510px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 45px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .box .text .info {
  position: relative;
}

footer .box .text .info a {
  color: #707070;
}

footer .box .text .info div {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 33px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 14px;
}

footer .box .text .info div img {
  position: absolute;
  left: 0;
}

footer .box .text .memo {
  position: relative;
  line-height: 27px;
}

footer .box .text .copyright {
  position: absolute;
  top: 190px;
  left: 0;
}

footer .box .service {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 765px;
  margin-left: 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .box .service .block {
  position: relative;
  width: 31%;
}

footer .box .service .block .title {
  position: relative;
  border-bottom: 2px solid #F08300;
  padding-bottom: 15px;
  margin-bottom: 16px;
  display: block;
}

footer .box .service .block .name {
  position: relative;
  display: block;
  margin-bottom: 5px;
}

input[type=checkbox]:not(old),
input[type=radio]:not(old) {
  width: 28px;
  margin: 0;
  padding: 0;
  opacity: 0;
  background-color: white;
  position: absolute;
}

input[type=radio]:not(old) + label {
  display: inline-block;
  margin-left: -0;
  padding-left: 30px;
  line-height: 28px;
}

input[type=radio]:not(old) + label::before {
  content: '';
  border: 1px solid white;
  width: 17px;
  height: 17px;
  display: block;
  position: absolute;
  left: 0;
  top: 4px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

input[type=radio]:not(old) + label::after {
  content: '' !important;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  position: absolute;
  left: 3px;
  font-size: 15px;
  top: 2px;
  width: 0;
  height: 20px;
  background-size: 20px;
  background-repeat: no-repeat;
  display: block !important;
}

input[type=radio]:not(old):checked + label::after {
  width: 20px;
  margin-left: 0 !important;
}

input[type=checkbox]:not(old) + label {
  display: inline-block;
  margin-left: -24px;
  padding-left: 40px;
  line-height: 28px;
}

input[type=checkbox]:not(old) + label::before {
  content: '';
  border: 1px solid white;
  width: 17px;
  height: 17px;
  display: block;
  position: absolute;
  left: 0;
  top: 4px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

input[type=checkbox]:not(old) + label::after {
  content: '';
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  position: absolute;
  left: 3px;
  font-size: 15px;
  top: 2px;
  width: 0;
  height: 20px;
  background-size: 20px;
  background-repeat: no-repeat;
}

input[type=checkbox]:not(old):checked + label::after {
  width: 20px;
}

input,
textarea {
  font-family: "Microsoft JhengHei", Myriad Pro, Myriad, Aria, sans-serif;
  font-size: 14px;
  color: #000;
  letter-spacing: 1px;
  background-color: white;
  outline: none;
}

#loader {
  position: fixed;
  z-index: 2999;
  background-color: #F9F9F9;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#loader img {
  max-width: 225px;
  width: 225px;
}

.clear::after {
  content: '';
  display: block;
  clear: both;
}

.content_width {
  max-width: 1460px;
  width: 90%;
  display: block;
  margin: 0 auto 0;
}

.contact_form {
  position: relative;
  display: block;
  margin-bottom: 115px;
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
}

.contact_form .title {
  position: relative;
  font-size: 18px;
  border-bottom: 1px solid #707070;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.contact_form .memo {
  position: relative;
  font-size: 14px;
  line-height: 25px;
  display: block;
  margin-bottom: 25px;
}

.contact_form .form {
  position: relative;
  font-size: 14px;
  width: 70%;
  display: block;
}

.contact_form .form .line {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 14px;
}

.contact_form .form .line .name {
  position: relative;
  width: 100px;
  line-height: 32px;
  letter-spacing: 0;
}

.contact_form .form .line .field {
  position: relative;
  width: calc(100% - 100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact_form .form .line .input_box {
  position: relative;
  border: 0;
  background-color: transparent;
  width: 100%;
  display: block;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  border-bottom: 1px solid #CBCBCB;
  height: 32px;
  padding: 0;
}

.contact_form .form .line textarea {
  position: relative;
  border: 1px solid #CBCBCB;
  background-color: transparent;
  width: 100%;
  display: block;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  height: 80px;
  padding: 8px;
}

.contact_form .link_button {
  color: #F08300;
  position: relative;
  width: 130px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  margin-right: 0;
  margin-left: auto;
  cursor: pointer;
}

.contact_form .time_choice .container {
  margin-right: 8px;
}

.contact_form .checkmark {
  position: absolute;
  top: 5px;
  left: 2px;
  height: 10px;
  width: 10px;
  border: 1px solid #F08300;
  border-radius: 50%;
  background-color: transparent;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.contact_form .container {
  position: relative;
  min-width: 53px;
  font-size: 14px;
  padding-left: 17px;
  line-height: 20px;
  top: 7px;
  cursor: pointer;
}

.contact_form .container:hover input ~ .checkmark {
  background-color: #F08300;
}

.contact_form .container input:checked ~ .checkmark {
  background-color: #F08300;
}

.contact_form .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.contact_info {
  position: relative;
  margin-bottom: 90px;
  display: block;
}

.contact_info .title {
  position: relative;
  font-size: 18px;
  border-bottom: 1px solid #707070;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.contact_info .time {
  position: relative;
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
  width: 53%;
}

.contact_info .memo {
  position: relative;
  font-size: 14px;
  line-height: 30px;
  display: block;
  width: 53%;
}

.contact_info .name {
  position: relative;
  font-size: 18px;
  display: block;
  margin-bottom: 15px;
  padding-top: 15px;
  width: 50%;
}

.contact_info .googlemap {
  position: absolute;
  right: 0;
  top: 58px;
  width: 357px;
}

#contact {
  position: relative;
  height: auto;
  min-height: 800px;
  overflow: hidden;
}

#contact.show .box {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

#contact .box {
  position: relative;
  WIDTH: 39%;
  min-width: 725px;
  left: 45%;
  z-index: 10;
  margin-top: 180px;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  opacity: 0;
  -webkit-transition: all 1.2s ease;
  transition: all 1.2s ease;
}

#contact .box .title_box {
  position: relative;
}

#contact .box .title_box .en_title {
  position: relative;
  font-size: 70px;
  letter-spacing: 2px;
  color: #707070;
  display: block;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-weight: 300;
  font-family: "Palanquin Dark", serif;
}

#contact .box .title_box .en_title::after {
  content: '';
  position: absolute;
  width: 51px;
  height: 2px;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: block;
  background-color: #707070;
}

#contact .box .title_box .title {
  position: relative;
  font-size: 30px;
  letter-spacing: 3px;
  display: block;
  margin: 0 auto;
  font-weight: 300;
  margin-bottom: 80px;
}

#contact .graphic {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

#contact .graphic.graphic_c01 {
  z-index: 2;
  left: -231px;
  top: 195px;
}

#contact .graphic.graphic_c02 {
  top: 27px;
  z-index: 2;
  left: 30%;
}

#contact .graphic.graphic_c03 {
  top: -538px;
  z-index: 3;
  left: -542px;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

#contact .graphic.snow {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  background-position: center;
}

#contact .graphic.snow .bg {
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.bottom_control {
  position: relative;
  z-index: 10;
  display: block;
  font-size: 14px;
  line-height: 25px;
  padding-top: 75px;
  padding-bottom: 115px;
}

.bottom_control .back {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 150px;
  text-align: center;
  line-height: 45px;
  border: 1px solid transparent;
  color: #F08300;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media only screen and (min-width: 1200px) {
  .bottom_control .back:hover {
    border-color: #F08300;
  }
}

.bottom_control .link_page {
  position: relative;
  display: block;
  width: 100%;
  padding-right: calc(100% / 7);
  padding-left: calc(100% / 7);
  background-color: white;
  margin-top: 50px;
}

.bottom_control .link_page::before {
  content: '';
  background-color: #DCDCDC;
  position: absolute;
  height: 1px;
  width: calc(100% / 7 * 5);
  top: 0;
}

.bottom_control .link_page::after {
  content: '';
  background-color: #DCDCDC;
  position: absolute;
  height: 1px;
  width: calc(100% / 7 * 5);
  bottom: 0;
}

.bottom_control .link_page .link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-size: 40px;
  padding: 7px 0;
  color: #707070;
  background-repeat: no-repeat;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

@media only screen and (min-width: 1200px) {
  .bottom_control .link_page .link:hover {
    color: #F08300;
  }
}

.bottom_control .link_page .link.prev {
  border-bottom: 1px solid #DCDCDC;
  padding-left: 55px;
}

.bottom_control .link_page .link.prev::before {
  content: 'previous';
  margin-right: 25px;
}

.bottom_control .link_page .link.prev::after {
  content: '';
  position: absolute;
  background-image: url(../images/arrow_left.png);
  background-position: left;
  width: 34px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: 62px;
  left: 0;
  top: 3px;
}

.bottom_control .link_page .link.next {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 55px;
  background-position: right center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  justify-content: end;
}

.bottom_control .link_page .link.next::before {
  content: 'next';
  margin-left: 25px;
}

.bottom_control .link_page .link.next::after {
  content: '';
  position: absolute;
  background-image: url("../images/arrow_right.png");
  background-position: right;
  width: 34px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: 62px;
  right: 0;
  top: 3px;
}

.bottom_control .link_page .link .title {
  position: relative;
}

@media only screen and (max-width: 1700px) {
  footer .box .text .memo {
    position: absolute;
    left: 0;
    top: 0;
  }
  footer .box .text {
    padding-top: 80px;
  }
  footer .box .text .copyright {
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
  }
  footer .box .service {
    margin-left: 0;
  }
  footer .box {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media only screen and (max-width: 1600px) {
  footer .box .text {
    width: 610px;
  }
  footer .box .service {
    min-width: 740px;
  }
  footer .box .logo {
    margin-right: 50px;
  }
}

@media only screen and (max-width: 1500px) {
  #contact .box {
    left: auto;
    margin-right: 5%;
    margin-left: auto;
  }
  #contact .graphic.graphic_c01 {
    left: -338px;
    top: 98px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  #contact .graphic.graphic_c02 {
    width: 80px;
  }
}

@media only screen and (max-width: 1370px) {
  footer .box .service {
    min-width: 657px;
  }
  footer .box .service .block {
    font-size: 14px;
  }
  footer .box .service .block .title {
    font-size: 16px;
  }
  footer .box .text {
    width: 455px;
    margin-right: 20px;
  }
  footer .box .text .copyright {
    font-size: 14px;
  }
  #contact .box .title_box .en_title {
    font-size: 50px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  #contact .box .title_box .en_title::after {
    width: 40px;
  }
  #contact .box .title_box .title {
    font-size: 24px;
  }
}

@media only screen and (max-width: 1300px) {
  footer .box .logo {
    margin-right: 32px;
    width: 100px;
  }
  #contact .graphic.graphic_c01 {
    left: -398px;
    top: 34px;
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  #contact .graphic.graphic_c02 {
    width: 66px;
  }
  #contact .graphic.graphic_c03 {
    -webkit-transform: scale(0.55);
            transform: scale(0.55);
  }
}

@media only screen and (max-width: 1200px) {
  footer .box .text .copyright {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 25px;
    font-size: 12px;
  }
  footer .box .text {
    width: 455px;
    display: block;
  }
  footer .box .service .block .title {
    font-size: 14px;
    padding-bottom: 8px;
    margin-bottom: 10px;
  }
  footer .box .service {
    margin-left: 0;
    min-width: 100px;
    width: 824px;
  }
  header .logo {
    width: 100px;
    height: 100px;
    left: 30px;
    top: 30px;
    padding: 22px;
  }
  header .nav {
    right: 22px;
    top: 22px;
    cursor: pointer;
    TRANSFORM: scale(0.8);
  }
  #menu_box .link_box {
    width: 90%;
  }
  #contact .box .title_box .en_title {
    font-size: 40px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  #contact .box .title_box .title {
    font-size: 20px;
  }
  #contact .box {
    min-width: 710px;
    margin-top: 137px;
  }
  #contact .graphic.graphic_c01 {
    left: -453px;
    top: 34px;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  .contact_form .form {
    width: 100%;
  }
  #menu_box .link_box .link {
    padding: 20px 10px;
  }
}

@media only screen and (max-width: 900px) {
  header {
    height: 55px;
    background-color: white;
  }
  header .logo {
    background-image: url(../images/logo_m.svg);
    padding: 0;
    top: 0;
    left: 30px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
    width: 95px;
  }
  header .logo img {
    display: none;
  }
  header .nav {
    right: 0;
    top: -8px;
    cursor: pointer;
    TRANSFORM: scale(0.8);
  }
  header .nav div {
    width: 28px;
    height: 3px;
  }
  header .nav.close::before,
  header .nav.close::after {
    height: 3px;
  }
  #menu_box .link_box {
    width: 80%;
    display: block;
    padding-bottom: 100px;
  }
  #menu_box .link_box .link {
    display: block;
    text-align: center;
    font-size: 20px;
  }
  footer .box .logo {
    display: none;
  }
  footer .box .service .block {
    width: 100%;
    margin-bottom: 20px;
    font-size: 15px;
  }
  footer .box .service .block .title {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  footer .box .service {
    display: block;
    width: 70%;
  }
  footer .box .text {
    font-size: 15px;
  }
  #gotop {
    width: 35px;
    height: 35px;
    right: 0;
  }
  #gotop::before {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  #gotop div {
    display: none;
  }
  #contact .box {
    min-width: 710px;
    margin-top: 137px;
    left: 13%;
    min-width: 300px;
    width: 74%;
    margin-left: 0;
  }
  .contact_info .googlemap {
    position: absolute;
    right: 0;
    top: -184px;
    width: 280px;
  }
  .contact_info .time {
    width: 100%;
    line-height: 24px;
  }
  .contact_info .memo {
    width: 100%;
  }
  #contact .graphic.graphic_c01 {
    left: -458px;
    top: auto;
    bottom: -100px;
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  #contact .contact_form {
    padding-bottom: 200px;
  }
  #contact .graphic.graphic_c02 {
    width: 50px;
    bottom: 316px;
    top: auto;
  }
  #contact .graphic.graphic_c03 {
    -webkit-transform: scale(0.55);
    transform: scale(0.4);
    left: auto;
    right: 0;
    top: 0;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    overflow: hidden;
  }
  #contact .graphic.graphic_c03 img {
    position: relative;
    right: -250px;
    top: -256px;
  }
  #loader img {
    max-width: 125px;
    width: 125px;
  }
  .page_bottom .numbox {
    display: block;
    float: none;
    margin: 0 auto;
    text-align: center;
  }
}

@media only screen and (max-width: 700px) {
  header .logo {
    left: 15px;
  }
  header .nav {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  .link_button {
    height: 44px;
    line-height: 44px;
    width: 100%;
    font-size: 12px;
  }
  footer .box {
    width: 74%;
    padding-top: 50px;
    display: block;
    padding-bottom: 150px;
  }
  footer .box .text {
    width: 100%;
    font-size: 13px;
    padding-bottom: 20px;
  }
  footer .box .text .info div {
    margin-bottom: 7px;
  }
  footer .box .text .memo {
    position: relative;
    line-height: 25px;
    margin-top: 16px;
    display: block;
  }
  footer .box .text .copyright {
    position: absolute;
    top: 300px;
    font-size: 12px;
  }
  footer .box .service {
    display: block;
    width: 100%;
    border-top: 1px solid #F08300;
    padding-top: 6px;
  }
  footer .box .service .block {
    margin-bottom: 3px;
  }
  footer .box .service .block .title {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  footer .box .service .block .name {
    display: none;
  }
  footer .box .text {
    padding-top: 0;
  }
  #menu_box .link_box .link {
    display: block;
    text-align: center;
    font-size: 15px;
    padding: 14px 0;
  }
  #menu_box.show .shadow {
    top: auto;
    bottom: -39px;
    left: -53px;
    width: 400px;
    height: 400px;
  }
  #menu_box .shadow {
    bottom: -100px;
    -webkit-filter: blur(23px) opacity(0.8);
            filter: blur(23px) opacity(0.8);
    -webkit-transform: scale(1) translate(-15px, 36px);
            transform: scale(1) translate(-15px, 36px);
  }
  #contact {
    height: auto;
    padding-bottom: 300px;
  }
  #contact .box {
    margin-top: 100px;
  }
  #contact .box .title_box .en_title {
    font-size: 30px;
    line-height: 35px;
    width: 100%;
  }
  #contact .box .title_box .en_title::after {
    width: 22px;
  }
  #contact .box .title_box .title {
    font-size: 16px;
    display: block;
    line-height: 28px;
    margin-bottom: 32px;
  }
  .contact_info .googlemap {
    position: relative;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 357px;
    margin-top: 30px;
    display: block;
  }
  .contact_info .name {
    width: 100%;
  }
  #contact .graphic.graphic_c01 {
    left: -89px;
    top: auto;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    bottom: -166px;
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
  }
  #contact .graphic.graphic_c02 {
    width: 50px;
    bottom: 260px;
    top: auto;
    left: 40%;
  }
  #contact .graphic.graphic_c03 {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  #contact .graphic.graphic_c03 img {
    position: relative;
    right: -136px;
    top: -136px;
    width: 400px;
  }
  .contact_form .form .line .field {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contact_form .form .line {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .contact_form .form .line .name {
    width: 100%;
  }
  .contact_form .form .line .field {
    width: 100%;
  }
  #contact .contact_form {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .contact_form .form .line textarea {
    height: 114px;
  }
  .contact_form .time_choice .container {
    margin-bottom: 7px;
  }
  .contact_form .form .sex_choice .input_box {
    width: calc(100% - 108px);
  }
  .contact_info .title {
    position: relative;
    font-size: 16px;
    border-bottom: 1px solid #707070;
    padding-bottom: 12px;
    margin-bottom: 10px;
  }
  .page_bottom {
    padding-right: 35px;
    padding-left: 35px;
  }
  .page_bottom .button {
    overflow: hidden;
    width: 30px;
  }
  .page_bottom .button.numbox {
    width: 100%;
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .page_bottom .button.next img {
    float: right;
  }
  .page_bottom .button.prev img {
    float: left;
  }
  .page_bottom .button img {
    width: 83px;
    margin-top: 3px;
    min-width: 83px;
  }
  #menu_box .link_box {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 350px) {
  footer .box .text .copyright {
    font-size: 10px;
  }
  #contact .graphic.graphic_c01 {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    bottom: -127px;
  }
  #contact .graphic.graphic_c02 {
    bottom: 233px;
  }
  #contact {
    padding-bottom: 220px;
  }
  #contact .box {
    min-width: 250px;
  }
}
/*# sourceMappingURL=style.css.map */
