@charset "UTF-8";
/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします  */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@900&display=swap");
body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  color: #333333;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  font-size: 16px;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 1024px) {
  img {
    border: 0;
    max-width: 100%;
    height: auto;
  }
}

a {
  color: #333333;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a:hover {
  opacity: 0.7;
}

a img {
  border: none;
}

i {
  padding: 0 5px;
}

ul {
  letter-spacing: -1em;
}

ul li {
  letter-spacing: 0;
  list-style: none;
}

.pc {
  display: block;
}

@media only screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.tablet {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .tablet {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .tablet {
    display: none;
  }
}

.sp {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .sp {
    display: block;
  }
}

.ssp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .ssp {
    display: block;
  }
}

/*PC改行加える*/
.br-pc {
  display: inherit;
}

@media only screen and (max-width: 1024px) {
  .br-pc {
    display: none;
  }
}

/*PC改行無効*/
.br_sp {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .br_sp {
    display: block;
  }
}

.br_ssp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .br_ssp {
    display: block;
  }
}

/************************************

wrapper

************************************/
.wrapper {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}

.wrapper::after {
  content: "";
  display: block;
  clear: both;
}

/************************************

.list(flexbox)

************************************/
.list {
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list::after {
  content: "";
  display: block;
  clear: both;
}

.list article {
  width: auto;
}

/************************************

header

************************************/
header {
  width: 100%;
  height: 70px;
  padding: 0px 70px 0 3%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
  /*============
nav
=============*/
  /*============
.toggle_btn
=============*/
  /*============
#mask
=============*/
}

@media only screen and (max-width: 1024px) {
  header {
    padding: 0 50px 0 3%;
    height: 50px;
  }
}

@media print {
  header {
    position: relative;
  }
}

header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 70px;
}

@media only screen and (max-width: 1024px) {
  header .container {
    height: 50px;
  }
}

header h1.head_logo {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 1;
}

header h1.head_logo img {
  width: 200px;
}

@media only screen and (max-width: 1024px) {
  header h1.head_logo img {
    width: 140px;
  }
}

@media only screen and (max-width: 767px) {
  header h1.head_logo img {
    width: 120px;
  }
}

header ul.entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

header ul.entry li {
  margin: 0 0 0 10px;
}

@media only screen and (max-width: 420px) {
  header ul.entry li {
    margin: 0 0 0 1.5vw;
  }
}

header ul.entry li a {
  color: #fff;
  font-weight: bold;
  background-color: #0050A9;
  display: block;
  padding: 10px 30px;
  font-size: 15px;
}

@media only screen and (max-width: 1024px) {
  header ul.entry li a {
    font-size: 14px;
    padding: 7px 20px;
  }
}

@media only screen and (max-width: 420px) {
  header ul.entry li a {
    font-size: 3vw;
    padding: 2vw 2.5vw;
  }
}

header ul.entry li a:hover {
  color: #fff;
}

header ul.entry li:first-child a {
  background-color: #333333;
}

header nav {
  display: block;
  position: fixed;
  top: 0;
  left: -400px;
  bottom: 0;
  max-width: 400px;
  width: calc(100% - 50px);
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all .5s;
  transition: all .5s;
  z-index: 80;
  opacity: 0;
}

header .open nav {
  left: 0;
  opacity: 1;
}

header nav .inner {
  padding: 25px 8%;
}

header nav .inner h2 {
  padding: 30px 8%;
  margin: 0;
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  header nav .inner h2 {
    padding: 20px 8%;
  }
}

header nav .inner h2 img {
  max-width: 180px;
}

header nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

header nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}

header nav .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em 0.3em;
  text-decoration: none;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

header nav .inner ul li a:hover {
  background: #e4e4e4;
}

header nav .inner .bt_entry {
  padding: 20px 0%;
}

header nav .inner .bt_entry a {
  display: block;
  padding: 54px 0 15px;
}

header nav .inner .official {
  width: 150px;
  margin: 0 auto;
}

header .toggle_btn {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  -webkit-transition: all .5s;
  transition: all .5s;
  cursor: pointer;
  z-index: 80;
}

@media only screen and (max-width: 1024px) {
  header .toggle_btn {
    top: 10px;
    right: 10px;
  }
}

header .toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  -webkit-transition: all .5s;
  transition: all .5s;
}

header .toggle_btn span:nth-child(1) {
  top: 4px;
}

header .toggle_btn span:nth-child(2) {
  top: 14px;
}

header .toggle_btn span:nth-child(3) {
  bottom: 4px;
}

header .open .toggle_btn span {
  background-color: #fff;
}

header .open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}

header .open .toggle_btn span:nth-child(2) {
  opacity: 0;
}

header .open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}

header #mask {
  display: none;
  -webkit-transition: all .5s;
  transition: all .5s;
}

header .open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 79;
  cursor: pointer;
}

footer {
  padding: 70px 0;
}

footer .foot_logo {
  width: 200px;
  max-width: 200px;
  margin: 0 auto 30px;
}

footer .prodused {
  font-size: 12px;
}

footer .prodused .wp-image-75 {
  width: 150px;
}

/************************************

PageUP

************************************/
.pageup {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 10px;
  right: 10px;
  z-index: 10;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media only screen and (max-width: 1024px) {
  .pageup {
    bottom: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
  }
}

.pageup a {
  display: block;
}

/************************************

main

************************************/
main {
  display: block;
  padding-top: 70px;
}

@media only screen and (max-width: 1024px) {
  main {
    padding-top: 50px;
  }
}

main section .white,
main section .beige {
  padding: 80px 0;
}

@media only screen and (max-width: 1024px) {
  main section .white,
  main section .beige {
    padding: 50px 0;
  }
}

main section .white {
  background-color: #fff;
}

main section .beige {
  background-color: #f7f7f7;
}

@media print {
  main section {
    opacity: 1;
  }
}

/*移動＋フェードイン表示*/
main header {
  display: none;
}

.zoomin {
  -webkit-transition: .8s;
  transition: .8s;
  transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
}

.mv01 {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
}

.fadein {
  -webkit-transition: .8s;
  transition: .8s;
  opacity: 0;
}

.fadein:not(:target) {
  opacity: 1\9;
  /*IE9対策*/
}

.mv02 {
  opacity: 1.0;
}

.fadeup {
  -webkit-transition: .8s;
  transition: .8s;
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
}

.fadeup:not(:target) {
  opacity: 1\9;
  /*IE9対策*/
}

.mv07 {
  opacity: 1.0;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

@media print {
  .zoomin, .fadein, .fadeup {
    opacity: 1;
  }
}

.list-mv03 {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}

.mv03 {
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
}

.list-mv04 {
  transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
}

.mv04 {
  transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
}

.list-mv05 {
  transform: translate(0, 40px);
  -webkit-transform: translate(0, 40px);
}

.mv05 {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

.sec_midashi {
  margin-bottom: 40px;
  text-align: center;
}

.sec_midashi h2.elementor-heading-title {
  font-size: 19px;
  font-weight: bold;
  color: #0050A9 !important;
  letter-spacing: 0.15em;
}

@media only screen and (max-width: 1024px) {
  .sec_midashi h2.elementor-heading-title {
    font-size: 15px;
  }
}

.sec_midashi h2.elementor-heading-title span {
  font-family: "Lato", sans-serif;
  font-size: 70px;
  color: #333333;
  display: block;
}

@media only screen and (max-width: 1024px) {
  .sec_midashi h2.elementor-heading-title span {
    font-size: 50px;
  }
}

h1, h2, h3, h4, h5, h6 {
  color: #333333;
}

.form {
  padding: 80px 0;
  background-color: #f7f7f7;
}

.form p {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .form p {
    text-align: left;
    margin: 20px 5% 0;
  }
}

.form .form_waku {
  max-width: 720px;
  width: 90%;
  margin: 40px auto;
  text-align: left;
}

.form .form_waku a {
  text-decoration: underline;
}

.form .form_waku .elementor-field-group {
  margin-bottom: 20px;
}

.form .form_waku label {
  display: inline-block;
  margin: 0 0 10px;
}

#form #form_navi {
  max-width: 800px;
  width: 90%;
  margin: 60px auto 60px;
}

@media only screen and (max-width: 1024px) {
  #form #form_navi {
    margin: 40px auto;
  }
}

#form #form_navi ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-left: 2px solid #0050A9; 
}

#form #form_navi ol li {
  list-style: none;
  width: 16.666%;
  text-align: center;
  background-color: #f7f7f7;
  border-right: 2px solid #0050A9;
  border-top: 2px solid #0050A9;
  border-bottom: 2px solid #0050A9;
  padding: 20px 5px;
  font-weight: bold;
  background-color: #fff;
  font-size: 15px;
  line-height: 1.1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (max-width: 1024px) {
  #form #form_navi ol li {
    font-size: 14px;
    padding: 12px 5px;
  }
}

@media only screen and (max-width: 767px) {
  #form #form_navi ol li {
    font-size: 2.5vw;
    padding: 10px 0.7vw;
  }
}

#form #form_navi ol li.active {
  background-color: #0050A9;
  color: #fff;
}

#form #form_navi ol li::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #0050A9;
  z-index: 2;
  content: "";
}

@media only screen and (max-width: 1024px) {
  #form #form_navi ol li::before {
    right: -7px;
    border-width: 7px 0 7px 7px;
  }
}

#form #form_navi ol li:last-child::before {
  display: none;
}

#form #form_input {
  max-width: 800px;
  margin: 60px auto 60px;
  width: 90%;
}

@media only screen and (max-width: 1024px) {
  #form #form_input {
    margin: 40px auto;
  }
}

#form #form_input dl {
  margin: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (max-width: 1024px) {
  #form #form_input dl {
    font-size: 15px;
  }
}

#form #form_input dl dt {
  width: 22%;
  margin: 0 3% 20px 0;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  #form #form_input dl dt {
    width: 100%;
    margin: 0 0 5px;
  }
}

#form #form_input dl dt .hissu {
  display: inline-block;
  font-size: 12px;
  color: darkred;
  margin: 0 0 0 5px;
}

#form #form_input dl dd {
  width: 75%;
  margin: 0 0 20px;
}

@media only screen and (max-width: 767px) {
  #form #form_input dl dd {
    width: 100%;
    margin: 0 0 20px;
  }
}

#form #form_input dl input[type="text"], #form #form_input dl input[type="email"], #form #form_input dl input[type="tel"] {
  font-size: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 100%;
}

#form #form_input dl input[type="text"].input_s, #form #form_input dl input[type="email"].input_s, #form #form_input dl input[type="tel"].input_s {
  width: 150px;
}

#form #form_input dl textarea {
  font-size: 100%;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 100%;
  height: 180px;
}

#form #form_input dl label {
  display: block;
  margin: 0 0 10px;
}

#form #form_input dl .rule_waku {
  text-align: left;
  width: 100%;
  height: 300px;
  overflow-y: scroll;
  padding: 20px;
  background-color: #eee;
}

#form #form_input dl .rule_waku article {
  margin: 0 0 20px;
}

#form #form_input dl .rule_waku h3 {
  font-size: 18px;
}

#form #form_input dl .rule_waku h4 {
  font-size: 16px;
}

#form #form_input dl .rule_waku p {
  text-align: left;
  line-height: 1.6;
}

#form #form_input dl .rule_waku ol {
  margin: 0 0 0 20px;
}

#form #form_input dl .rule_waku ol li {
  text-align: left;
  line-height: 1.6;
  margin: 0 0 0.7em;
}

#form #form_input .form_bt {
  text-align: center;
}

#form #form_input .form_bt button {
  background-color: #0050A9;
  border: none;
  color: #fff;
  -webkit-appearance: none;
  border-radius: 0;
  font-size: 20px;
  font-weight: bold;
  padding: 15px 40px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 3px;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
}

@media only screen and (max-width: 1024px) {
  #form #form_input .form_bt button {
    font-size: 16px;
  }
}

#form #form_input .form_bt button.back {
  background-color: #999;
}

#form #form_input .form_bt button:hover {
  background-color: #00A8A9;
}

#form #thanks {
  max-width: 800px;
  margin: 60px auto 60px;
  width: 90%;
}

@media only screen and (max-width: 1024px) {
  #form #thanks {
    margin: 40px auto;
  }
}

#form #thanks h3 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

@media only screen and (max-width: 1024px) {
  #form #thanks h3 {
    font-size: 20px;
    text-align: left;
  }
}

#form #thanks h3 strong {
  color: #0050A9;
}

#form #thanks p {
  text-align: center;
  line-height: 1.8;
}

@media only screen and (max-width: 1024px) {
  #form #thanks p {
    font-size: 15px;
    text-align: left;
    margin: 20px 0 0;
  }
}

#form #thanks .bt {
  text-align: center;
  margin: 40px 0 0;
}

#form #thanks .bt a {
  display: inline-block;
  background-color: #0050A9;
  color: #fff;
  font-weight: bold;
  padding: 15px 50px;
  border-radius: 2em;
}
/*# sourceMappingURL=maps/common.css.map */
