@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

li {
  list-style: none;
}

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

a {
  color: #111;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover, a:link, a:active, a:focus {
  color: #111;
}

a:hover {
  opacity: 0.6;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

.heading_1 {
  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;
  gap: 0.6em;
  font-size: 30px;
  padding: 100px 0;
  text-align: center;
}

.heading_1 i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.4em;
}

.heading_1 i::before, .heading_1 i::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1.6em;
  background: #111;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}

.heading_1 i::after {
  height: 1.2em;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.heading_1 i:first-child {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.heading_2 {
  max-width: 500px;
  margin: 0 auto 40px;
  padding: 40px 60px;
  text-align: center;
  border-radius: 15px;
  position: relative;
}

.heading_2.green {
  background: #7ca1a2;
}

.heading_2.green h3 {
  color: #f8f841;
}

.heading_2.green h2 {
  color: #fff;
}

.heading_2.green .txt {
  color: #fff;
}

.heading_2.green::before {
  background: #7ca1a2;
}

.heading_2.yellow {
  background: #f2ef8f;
}

.heading_2.yellow h3 {
  color: #7ca1a2;
}

.heading_2.yellow h2 {
  color: #606060;
}

.heading_2.yellow .txt {
  color: #606060;
}

.heading_2.yellow::before {
  background: #f2ef8f;
}

.heading_2 h3 {
  font-size: 14px;
  margin-bottom: 0.3em;
}

.heading_2 h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0.2em;
}

.heading_2 .txt {
  font-size: 14px;
}

.heading_2::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
}

.cta_bottom {
  position: fixed;
  bottom: 1em;
  right: 1em;
  z-index: 100;
  font-size: 20px;
}

@media only screen and (max-width: 500px) {
  .cta_bottom {
    font-size: 14px;
    bottom: 0.2em;
    right: 0.2em;
  }
}

.cta_bottom a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 7em;
  height: 7em;
  background: #22c755;
  border-radius: 100%;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
  position: relative;
  -webkit-box-shadow: 0.2em 0.2em 0.4em -0.2em rgba(0, 0, 0, 0.3);
          box-shadow: 0.2em 0.2em 0.4em -0.2em rgba(0, 0, 0, 0.3);
}

.cta_bottom a:hover {
  opacity: 1;
}

.cta_bottom a::before {
  content: "";
  display: block;
  width: 85%;
  height: 85%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 100%;
  border: solid 2px #fff;
}

.cta_bottom a span {
  display: block;
}

.cta_bottom a span:nth-child(1) {
  letter-spacing: 0.1em;
  font-size: 0.9em;
}

.cta_bottom a span:nth-child(2) {
  font-size: 0.9em;
  letter-spacing: 0.1em;
  margin-bottom: 0.3em;
}

.cta_bottom a span:nth-child(3) {
  font-size: 0.5em;
  letter-spacing: 0.1em;
}

footer {
  background: #898477;
  padding: 60px 20px 20px;
}

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

footer .logo img {
  max-width: 120px;
}

footer .copyright {
  color: #fff;
  font-size: 12px;
  text-align: center;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

@media only screen and (max-width: 500px) {
  header {
    padding: 15px 15px;
  }
}

header .logo {
  width: 180px;
}

@media only screen and (max-width: 500px) {
  header .logo {
    width: 120px;
  }
}

header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

header ul li a img {
  width: 30px;
}

@media only screen and (max-width: 500px) {
  header ul li a img {
    width: 40px;
  }
}

.page_top .mainvisual {
  line-height: 0;
}

@media only screen and (max-width: 600px) {
  .page_top .mainvisual img.pc {
    display: none;
  }
}

.page_top .mainvisual img.sp {
  display: none;
}

@media only screen and (max-width: 600px) {
  .page_top .mainvisual img.sp {
    display: block;
  }
}

.page_top .cta {
  background: #fffcb2;
  position: relative;
}

.page_top .cta .inner {
  max-width: 1000px;
  padding: 40px 25px;
  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;
  margin: 0 auto;
  gap: 40px;
}

@media only screen and (max-width: 600px) {
  .page_top .cta .inner {
    padding: 30px 10px;
  }
}

@media only screen and (max-width: 600px) {
  .page_top .cta .inner {
    gap: 0;
  }
}

.page_top .cta .inner .box_img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media only screen and (max-width: 800px) {
  .page_top .cta .inner .box_img {
    display: none;
  }
}

.page_top .cta .inner .box_img.left {
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
}

.page_top .cta .inner .box_img.right {
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
}

.page_top .cta .inner .box_txt {
  width: 650px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

@media only screen and (max-width: 1000px) {
  .page_top .cta .inner .box_txt {
    width: 70%;
  }
}

@media only screen and (max-width: 700px) {
  .page_top .cta .inner .box_txt {
    width: 100%;
  }
}

.page_top .cta .inner .box_txt .speech {
  position: relative;
  margin-bottom: 0.8em;
  padding: 0.6em 1.4em;
  font-size: 24px;
  background: #fff;
}

@media only screen and (max-width: 1000px) {
  .page_top .cta .inner .box_txt .speech {
    font-size: 2.5vw;
  }
}

@media only screen and (max-width: 700px) {
  .page_top .cta .inner .box_txt .speech {
    font-size: 4vw;
  }
}

.page_top .cta .inner .box_txt .speech::before {
  content: "";
  display: block;
  width: 1.2em;
  height: 1.2em;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  bottom: -0.6em;
  left: 20%;
}

.page_top .cta .inner .box_txt .comment {
  font-size: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  font-weight: 600;
}

@media only screen and (max-width: 1000px) {
  .page_top .cta .inner .box_txt .comment {
    font-size: 5vw;
  }
}

@media only screen and (max-width: 700px) {
  .page_top .cta .inner .box_txt .comment {
    font-size: 6vw;
  }
}

.page_top .cta .inner .box_txt .comment::before, .page_top .cta .inner .box_txt .comment::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  background-image: url("../img/page/top/cta/comment.svg");
  background-size: cover;
}

.page_top .cta .inner .box_txt .comment::before {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.page_top .cta .inner .box_txt ul {
  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;
  width: 100%;
  gap: 15px;
}

@media only screen and (max-width: 700px) {
  .page_top .cta .inner .box_txt ul {
    gap: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.page_top .cta .inner .box_txt ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.page_top .cta .inner .box_txt ul li a {
  display: block;
  border-radius: 10em;
  font-size: 18px;
  max-width: 300px;
  text-align: center;
  font-size: 28px;
  margin: 0 auto;
  background: #22c755;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #98ea91), color-stop(50%, #43cc37));
  background: linear-gradient(to bottom, #98ea91 50%, #43cc37 50%);
  padding: 0.3em 1em;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
}

@media only screen and (max-width: 1000px) {
  .page_top .cta .inner .box_txt ul li a {
    font-size: 20px;
    padding: 0.5em;
  }
}

@media only screen and (max-width: 700px) {
  .page_top .cta .inner .box_txt ul li a {
    gap: 0.5em;
    font-size: 20px;
  }
}

.page_top .cta .inner .box_txt ul li a img {
  display: block;
  width: 1.6em;
}

.page_top .cta .inner .box_txt ul li a span {
  text-align: center;
}

.page_top .cta .inner .box_txt ul li a:hover {
  opacity: 1;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.page_top .victoria .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 25px;
}

.page_top .victoria .inner h2 {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-size: 40px;
  line-height: 1.6;
  margin-bottom: 2em;
}

@media only screen and (max-width: 900px) {
  .page_top .victoria .inner h2 {
    font-size: 4.3vw;
  }
}

.page_top .victoria .inner .clm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin: 0 auto 60px;
}

@media only screen and (max-width: 900px) {
  .page_top .victoria .inner .clm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    max-width: 700px;
  }
}

.page_top .victoria .inner .clm .box_img {
  width: 350px;
}

@media only screen and (max-width: 900px) {
  .page_top .victoria .inner .clm .box_img {
    max-width: 700px;
    width: 60%;
    margin: 0 auto;
  }
}

.page_top .victoria .inner .clm .box_txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.page_top .victoria .inner .clm .box_txt h3 {
  font-size: 30px;
  font-family: "Noto Serif JP", serif;
  padding: 2em 0 0.5em;
  line-height: 1.8;
}

@media only screen and (max-width: 600px) {
  .page_top .victoria .inner .clm .box_txt h3 {
    font-size: 5.3vw;
  }
}

.page_top .victoria .inner .clm .box_txt p {
  font-size: 18px;
  font-weight: 500;
  line-height: 2.4;
}

@media only screen and (max-width: 600px) {
  .page_top .victoria .inner .clm .box_txt p {
    font-size: 15px;
  }
}

.page_top .victoria .inner .publish h3 {
  text-align: center;
  background: #f5ef2a;
  font-size: 22px;
  padding: 0.5em;
  font-weight: 500;
  margin-bottom: 20px;
}

@media only screen and (max-width: 600px) {
  .page_top .victoria .inner .publish h3 {
    font-size: 18px;
  }
}

.page_top .victoria .inner .publish ul {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 600px) {
  .page_top .victoria .inner .publish ul {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.page_top .victoria .inner .publish ul li img {
  width: 100%;
}

.page_top .concept {
  background-image: url("../img/page/top/concept/bg.png");
  background-size: cover;
}

.page_top .concept .inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 25px;
}

@media only screen and (max-width: 600px) {
  .page_top .concept .inner {
    padding: 60px 15px;
  }
}

.page_top .concept .inner .box_txt {
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

@media only screen and (max-width: 600px) {
  .page_top .concept .inner .box_txt {
    gap: 10px;
  }
}

.page_top .concept .inner .box_txt h3 {
  width: 70px;
}

@media only screen and (max-width: 600px) {
  .page_top .concept .inner .box_txt h3 {
    display: none;
  }
}

.page_top .concept .inner .box_txt .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 40px;
}

.page_top .concept .inner .box_txt .txt h2 {
  margin-bottom: 20px;
  font-weight: 600;
  color: #fff;
}

.page_top .concept .inner .box_txt .txt h2 span {
  display: block;
}

.page_top .concept .inner .box_txt .txt h2 span:nth-child(1) {
  font-size: 40px;
}

@media only screen and (max-width: 600px) {
  .page_top .concept .inner .box_txt .txt h2 span:nth-child(1) {
    font-size: 22px;
  }
}

.page_top .concept .inner .box_txt .txt h2 span:nth-child(2) {
  font-size: 44px;
}

@media only screen and (max-width: 600px) {
  .page_top .concept .inner .box_txt .txt h2 span:nth-child(2) {
    font-size: 28px;
  }
}

.page_top .concept .inner .box_txt .txt h4 {
  font-size: 30px;
  color: #fff;
  font-weight: 500;
  padding: 1em 0 0.5em;
}

@media only screen and (max-width: 600px) {
  .page_top .concept .inner .box_txt .txt h4 {
    font-size: 22px;
  }
}

.page_top .concept .inner .box_txt .txt p {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 3;
}

@media only screen and (max-width: 600px) {
  .page_top .concept .inner .box_txt .txt p {
    font-size: 15px;
  }
}

.page_top .concept .inner .box_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page_top .concept .inner .box_img img:nth-child(1) {
  width: 60%;
  border-radius: 20px;
}

.page_top .concept .inner .box_img img:nth-child(2) {
  width: 30%;
}

.page_top .reason {
  background: #85b4b5;
  padding: clamp(40px, 6vw, 80px) 25px;
}

.page_top .reason .heading {
  text-align: center;
  margin-bottom: 40px;
}

.page_top .reason .heading span {
  font-size: 18px;
  letter-spacing: 0.2em;
  color: #f8f841;
}

@media only screen and (max-width: 500px) {
  .page_top .reason .heading span {
    font-size: 15px;
  }
}

.page_top .reason .heading h2 {
  font-size: 36px;
  color: #fff;
  font-weight: 500;
}

@media only screen and (max-width: 500px) {
  .page_top .reason .heading h2 {
    font-size: 19px;
  }
}

.page_top .reason .inner {
  max-width: 1000px;
  margin: 0 auto;
}

@media only screen and (max-width: 900px) {
  .page_top .reason .inner {
    max-width: 700px;
  }
}

.page_top .reason .inner .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: 40px 0;
}

@media only screen and (max-width: 900px) {
  .page_top .reason .inner .item {
    gap: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (min-width: 900px) {
  .page_top .reason .inner .item:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .page_top .reason .inner .item:nth-child(2n) .img_box .number {
    left: auto;
    right: -1.5em;
  }
}

.page_top .reason .inner .item .img_box {
  width: 450px;
  position: relative;
}

@media only screen and (max-width: 900px) {
  .page_top .reason .inner .item .img_box {
    width: 100%;
  }
}

.page_top .reason .inner .item .img_box .number {
  position: absolute;
  top: -1.5em;
  left: -1.5em;
  font-size: 26px;
  width: 2.6em;
  height: 2.6em;
  line-height: 1;
  font-weight: 900;
  border-radius: 100%;
  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;
  border: solid 2px #fff;
  color: #fff;
}

@media only screen and (max-width: 500px) {
  .page_top .reason .inner .item .img_box .number {
    top: -2em;
    left: -1em;
  }
}

.page_top .reason .inner .item .img_box img {
  position: relative;
  border-radius: 10px;
  -webkit-box-shadow: 10px 10px 20px -10px rgba(0, 0, 0, 0.2);
          box-shadow: 10px 10px 20px -10px rgba(0, 0, 0, 0.2);
}

.page_top .reason .inner .item .txt_box {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  padding-top: 20px;
}

.page_top .reason .inner .item .txt_box h4 {
  font-size: 15px;
  font-weight: 600;
  color: #f8f841;
}

.page_top .reason .inner .item .txt_box h3 {
  font-size: 28px;
  color: #fff;
  font-weight: 600;
  border-bottom: solid 2px #eee;
  line-height: 1.2;
  padding: 0.3em 0 0.5em;
  margin-bottom: 0.5em;
}

@media only screen and (max-width: 900px) {
  .page_top .reason .inner .item .txt_box h3 {
    font-size: 22px;
  }
}

.page_top .reason .inner .item .txt_box p {
  font-weight: 500;
  color: #fff;
  line-height: 2.4;
  margin-bottom: 0.5em;
}

.page_top .menu {
  padding: clamp(40px, 6vw, 80px) 25px;
  background: #85b4b5;
}

.page_top .menu .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.page_top .menu .inner h2 {
  text-align: center;
  font-size: 30px;
  color: #fff;
  margin-bottom: 1em;
}

@media only screen and (max-width: 600px) {
  .page_top .menu .inner h2 {
    font-size: 24px;
  }
}

.page_top .menu .inner table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 50px;
}

.page_top .menu .inner table.times1 tr td {
  width: 420px;
}

@media only screen and (max-width: 600px) {
  .page_top .menu .inner table.times1 tr td {
    width: auto;
  }
}

.page_top .menu .inner table tr:first-child th,
.page_top .menu .inner table tr:first-child td {
  font-size: 14px;
  padding: 0.3em 10px;
}

@media only screen and (max-width: 600px) {
  .page_top .menu .inner table tr:first-child th,
  .page_top .menu .inner table tr:first-child td {
    font-size: 13px;
    padding: 0.3em 5px;
  }
}

.page_top .menu .inner table tr:first-child th {
  font-size: 17px;
  color: #f8f841;
}

@media only screen and (max-width: 600px) {
  .page_top .menu .inner table tr:first-child th {
    font-size: 14px;
  }
}

.page_top .menu .inner table tr th,
.page_top .menu .inner table tr td {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  padding: 0.6em 10px;
  border-bottom: solid 1px #fff;
}

@media only screen and (max-width: 600px) {
  .page_top .menu .inner table tr th,
  .page_top .menu .inner table tr td {
    font-size: 13px;
    padding: 0.4em 5px;
  }
}

.page_top .menu .inner table tr th {
  text-align: left;
}

.page_top .menu .inner table tr td {
  width: 140px;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .page_top .menu .inner table tr td {
    width: auto;
  }
}

.page_top .menu .inner .comment {
  color: #fff;
  font-size: 14px;
}

.page_top .taboo {
  padding: clamp(40px, 6vw, 80px) 25px;
}

.page_top .taboo ul {
  max-width: 900px;
  margin: 0 auto 20px;
  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;
  gap: 10px;
}

.page_top .taboo ul li {
  background: #7ca1a2;
  padding: 0.6em 1.5em;
  border-radius: 10em;
  color: #fff;
  font-size: clamp(12px, 1.4vw, 16px);
}

.page_top .taboo .comment {
  text-align: center;
  font-size: 14px;
  color: #707070;
}

@media only screen and (max-width: 500px) {
  .page_top .taboo .comment {
    text-align: left;
  }
  .page_top .taboo .comment br {
    display: none;
  }
}

.page_top .checklist {
  padding: clamp(40px, 6vw, 80px) 25px;
}

.page_top .checklist ul {
  max-width: 900px;
  margin: 0 auto 20px;
}

.page_top .checklist ul li {
  border-bottom: solid 1px #707070;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #707070;
  padding: 0.8em 0;
}

.page_top .checklist ul li span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.page_top .checklist ul li:first-child {
  border-top: solid 1px #707070;
}

.page_top .checklist ul li::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border: solid 1px #707070;
  margin-right: 0.5em;
  -webkit-transform: translateY(0.3em);
          transform: translateY(0.3em);
}

.page_top .checklist .comment {
  color: #707070;
  text-align: center;
}

@media only screen and (max-width: 500px) {
  .page_top .checklist .comment {
    text-align: left;
  }
  .page_top .checklist .comment br {
    display: none;
  }
}

.page_top .infomation {
  background: #fffeed;
}

.page_top .infomation .inner {
  padding: 100px 25px;
  max-width: 1200px;
  margin: 0 auto;
  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;
  gap: 40px;
}

@media only screen and (max-width: 700px) {
  .page_top .infomation .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.page_top .infomation .inner .box_img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.page_top .infomation .inner .box_img img {
  width: 100%;
  border-radius: 20px;
}

.page_top .infomation .inner .box_txt {
  width: 700px;
}

@media only screen and (max-width: 700px) {
  .page_top .infomation .inner .box_txt {
    width: 100%;
  }
}

.page_top .infomation .inner .box_txt .haeding {
  margin-bottom: 20px;
}

.page_top .infomation .inner .box_txt .haeding span {
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #779a9b;
}

@media only screen and (max-width: 500px) {
  .page_top .infomation .inner .box_txt .haeding span {
    font-size: 15px;
  }
}

.page_top .infomation .inner .box_txt .haeding h2 {
  font-size: 25px;
}

@media only screen and (max-width: 500px) {
  .page_top .infomation .inner .box_txt .haeding h2 {
    font-size: 19px;
  }
}

.page_top .infomation .inner .box_txt .item {
  padding: 10px 5px;
  border-top: solid 1px #707070;
}

.page_top .infomation .inner .box_txt .item:last-child {
  border-bottom: solid 1px #707070;
}

.page_top .infomation .inner .box_txt .item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.4em;
}

.page_top .infomation .inner .box_txt .item p {
  font-size: 15px;
  line-height: 1.6;
}

.page_top .infomation .inner .box_txt .item p a {
  color: #000;
  text-decoration: underline;
}

@media only screen and (max-width: 400px) {
  .page_top .infomation .inner .box_txt .item ul {
    padding: 10px 0;
  }
}

.page_top .infomation .inner .box_txt .item ul li {
  font-size: 15px;
  padding: 0.1em;
}

.page_top .infomation .inner .box_txt .item ul li br {
  display: none;
}

@media only screen and (max-width: 325px) {
  .page_top .infomation .inner .box_txt .item ul li br {
    display: block;
  }
}

.page_top .infomation .inner .box_txt .item ul .btn_map a {
  width: 200px;
  padding: 10px 15px;
  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;
  gap: 10px;
  background: #aaa;
  color: #fff;
  font-size: 14px;
  border-radius: 45px;
}

@media only screen and (max-width: 400px) {
  .page_top .infomation .inner .box_txt .item ul .btn_map a {
    width: 250px;
  }
}

.page_top .infomation .inner .box_txt .item ul .btn_map a img {
  width: 16px;
}

.page_top .faq {
  background: #f2ef8f;
}

.page_top .faq .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 25px;
}

.page_top .faq .inner .heading {
  text-align: center;
  margin-bottom: 40px;
}

.page_top .faq .inner .heading span {
  font-size: 18px;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 500px) {
  .page_top .faq .inner .heading span {
    font-size: 15px;
  }
}

.page_top .faq .inner .heading h2 {
  font-size: 36px;
  font-weight: 500;
}

@media only screen and (max-width: 500px) {
  .page_top .faq .inner .heading h2 {
    font-size: 19px;
  }
}

.page_top .faq .inner ul {
  max-width: 700px;
  margin: 0 auto;
}

.page_top .faq .inner ul li {
  border-bottom: solid 1px #707070;
  padding: 20px 10px;
  font-weight: 500;
  line-height: 1.8;
  font-size: 16px;
}

@media only screen and (max-width: 500px) {
  .page_top .faq .inner ul li {
    font-size: 14px;
    padding: 15px 10px;
  }
}

.page_top .faq .inner ul li .icon {
  line-height: 0;
}

@media only screen and (max-width: 500px) {
  .page_top .faq .inner ul li .icon {
    display: none;
  }
}

.page_top .faq .inner ul li .icon img {
  width: 30px;
}

.page_top .faq .inner ul li .Q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  cursor: pointer;
}

.page_top .faq .inner ul li .Q .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.page_top .faq .inner ul li .Q:after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: solid 2px #707070;
  border-right: solid 2px #707070;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin-left: 1em;
}

.page_top .faq .inner ul li .Q.open:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.page_top .faq .inner ul li .A {
  font-size: 0.9em;
  display: none;
  padding-top: 20px;
}

.page_top .faq .inner ul li .A .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.page_top .faq .inner ul li .A .box .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.page_top .faq .inner ul li .A .box .txt p {
  line-height: 1.8;
}
/*# sourceMappingURL=style.css.map */