@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&display=swap");
/*
default size
  width:80%;
  max-width:1160px;

small headline size
  min-width: 278px;
  margin-right: 1em;

border-radius
  border-radius: 2em;


*/
body {
  margin: 0;
  padding: 1.5rem 0 0 0;
  position: relative;
  background-color: #ffffff;
  color: #111111;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.8em;
}
body .index_bg {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
body.lower .index_bg {
  display: none;
}
@media screen and (max-width: 700px) {
  body:has(.bg) {
    padding: 8rem 0 0 0;
  }
}

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

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #111111;
  font-weight: 600;
  -webkit-transition: ease 0.2s all;
  transition: ease 0.2s all;
}
a:hover {
  opacity: 0.7;
}

img {
  vertical-align: bottom;
}

.btn_standard {
  position: relative;
  display: inline-block;
  color: #ffffff;
  background-color: #668E69;
  border-radius: 2em;
  padding: 1em 2em 1em 1.5em;
  line-height: 1em;
  min-width: 10rem;
  text-align: center;
}
.btn_standard::after {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900;
  position: absolute;
  right: 1em;
  top: 1em;
}
.btn_standard:hover {
  opacity: 1;
  background-color: #66BDCC;
}

.btn_sub {
  position: relative;
  display: inline-block;
  color: #ffffff;
  background-color: #66BDCC;
  border: #66BDCC 3px solid;
  border-radius: 2em;
  padding: 1em 2em 1em 1.5em;
  line-height: 1em;
  min-width: 10rem;
  text-align: center;
}
.btn_sub::after {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900;
  position: absolute;
  right: 1em;
  top: 1em;
}
.btn_sub:hover {
  opacity: 1;
  background-color: #EFF8FA;
  color: #66BDCC;
}

.btn_mini {
  position: relative;
  display: inline-block;
  color: #ffffff;
  background-color: #66BDCC;
  border: #66BDCC 2px solid;
  border-radius: 2em;
  padding: 0.4em 1em;
  line-height: 1em;
  min-width: 0;
  text-align: center;
  font-size: 0.9em;
  vertical-align: middle;
}
.btn_mini:hover {
  opacity: 1;
  background-color: #ffffff;
  color: #66BDCC;
}

.onlyPc {
  display: contents;
}
@media screen and (max-width: 700px) {
  .onlyPc {
    display: none;
  }
}

.onlySp {
  display: none;
}
@media screen and (max-width: 700px) {
  .onlySp {
    display: contents;
  }
}

.sitetitle .catch {
  font-size: 0.4em;
  display: block;
  margin-bottom: 0.5em;
  letter-spacing: 0.1em;
}
.sitetitle p {
  line-height: 1em;
  font-family: "Josefin Sans", sans-serif;
}
.sitetitle p a {
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .sitetitle p a {
    font-size: 1.8rem;
  }
}
.sitetitle p a span {
  text-transform: uppercase;
}

/* ~~~~~~~~~~~~~~~~ header ~~~~~~~~~~~~~~~~ */
header {
  width: 100%;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
header .flex_st_parent {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 96%;
  margin: 0 auto;
  padding: 1em 2em 1em 3em;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: ease 0.5s all;
  transition: ease 0.5s all;
  border-radius: 2rem;
}
@media screen and (max-width: 1024px) {
  header .flex_st_parent {
    width: 96%;
    padding: 1em 2em;
  }
}
@media screen and (max-width: 943px) {
  header .flex_st_parent {
    display: block;
    padding: 1em 0;
  }
}
@media screen and (max-width: 700px) {
  header .flex_st_parent {
    border-radius: 0;
    padding: 1.5em 0 0.6em;
    width: 100%;
  }
}
@media screen and (max-width: 943px) {
  header .flex_st_parent .sitetitle {
    margin-top: 0;
    text-align: center;
  }
}
@media screen and (max-width: 700px) {
  header .flex_st_parent .sitetitle {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 700px) {
  header .flex_st_parent .sitetitle .catch {
    line-height: 1em;
    font-size: 0.3em;
  }
}
@media screen and (max-width: 700px) {
  header .flex_st_parent .sitetitle p a {
    font-size: 1.5rem;
  }
}
header nav {
  overflow-x: auto;
}
header nav::-webkit-scrollbar {
  display: none;
}
header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  header nav ul {
    margin-left: 0;
  }
}
@media screen and (max-width: 943px) {
  header nav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 700px) {
  header nav ul {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 1em 0 0.2em;
  }
}
header nav ul li {
  white-space: nowrap;
  padding: 0 0.5em;
  font-size: 0.9em;
}
@media screen and (min-width: 1200px) {
  header nav ul li {
    font-size: 1em;
    padding: 0 1em;
  }
}
@media screen and (max-width: 1024px) {
  header nav ul li {
    padding: 0 0.4em;
  }
}
@media screen and (max-width: 943px) {
  header nav ul li {
    font-size: 0.9em;
    padding: 0 0.8em;
  }
}
@media screen and (max-width: 700px) {
  header nav ul li {
    font-size: 1em;
    border-right: 1px solid #111111;
    line-height: 1em;
  }
}
@media screen and (max-width: 700px) {
  header nav ul li:first-child {
    padding-left: 2em;
  }
}
@media screen and (max-width: 700px) {
  header nav ul li:last-child {
    border-right: none;
  }
}
header.bg {
  position: fixed;
  z-index: 100;
}
@media screen and (max-width: 700px) {
  header.bg {
    left: 0;
    top: 0;
  }
}
header.bg .flex_st_parent {
  background: #ffffff;
  -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 700px) {
  header.bg .flex_st_parent {
    width: 100%;
  }
}
@media screen and (max-width: 943px) {
  header.bg .flex_st_parent .sitetitle {
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 700px) {
  header.bg .flex_st_parent .sitetitle {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 700px) {
  header.bg .flex_st_parent .sitetitle .catch {
    display: none;
  }
}

.lower header.bg {
  position: fixed;
  z-index: 100;
}
@media screen and (max-width: 700px) {
  .lower header.bg {
    left: 0;
    top: 0;
  }
}
.lower header.bg .flex_st_parent {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (max-width: 700px) {
  .lower header.bg .flex_st_parent {
    width: 100%;
  }
}
.lower header.bg .flex_st_parent .sitetitle .catch {
  line-height: 1.5em;
}
.lower header.bg .flex_st_parent .sitetitle p a {
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .lower header.bg .flex_st_parent .sitetitle p a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 943px) {
  .lower header.bg .flex_st_parent .sitetitle p a {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 943px) {
  .lower header.bg .flex_st_parent .sitetitle {
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 700px) {
  .lower header.bg .flex_st_parent .sitetitle {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 700px) {
  .lower header.bg .flex_st_parent .sitetitle .catch {
    display: none;
  }
}

/* ~~~~~~~~~~~~~~~~ footer ~~~~~~~~~~~~~~~~ */
footer {
  padding: 4em 6em 0;
  background-color: #EFF8FA;
}
@media screen and (max-width: 1024px) {
  footer {
    padding: 4em 3em 0;
  }
}
@media screen and (max-width: 943px) {
  footer {
    padding: 3em 3em 0;
  }
}
footer .inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
footer .inner .sitetitle {
  margin: 0;
}
@media screen and (max-width: 943px) {
  footer .inner .sitenavi_wrap {
    margin-top: 2rem;
  }
}
footer .inner .sitenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 430px;
  margin-left: 3em;
}
@media screen and (max-width: 1024px) {
  footer .inner .sitenavi {
    margin-left: 0;
  }
}
@media screen and (max-width: 700px) {
  footer .inner .sitenavi {
    margin-bottom: 2em;
  }
}
footer .inner .sitenavi li {
  width: 50%;
  font-size: 1em;
  margin-bottom: 2em;
}
@media screen and (max-width: 700px) {
  footer .inner .sitenavi li {
    width: 100%;
    margin-bottom: 0.5em;
  }
}
footer .inner address {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-style: normal;
  font-size: 0.6em;
  margin: 4rem 0 3rem;
  display: block;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 700px) {
  footer .inner address {
    text-align: left;
  }
}

/* ~~~~~~~~~~~~~~~~ common ~~~~~~~~~~~~~~~~ */
.h2_standard {
  margin: 0 0 0.2em;
  letter-spacing: 0.1em;
  text-align: center;
}

.h2sub_standard {
  text-transform: uppercase;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.75em;
  text-align: center;
  letter-spacing: 0.1em;
}

.h3_standard {
  font-weight: 600;
  margin: 2rem 0 0.2em;
}
.h3_standard a {
  text-decoration: underline;
}

.flex_st_parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 700px) {
  .flex_st_parent {
    display: block;
  }
}

.p_strong {
  font-weight: bold;
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 1em;
}

.p_strong_more {
  font-weight: bold;
  font-size: 1.4rem;
  display: inline-block;
  margin-bottom: 1em;
}

.p_strong_less {
  font-weight: bold;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 0;
}

.p_normal {
  font-size: 0.9rem;
}
.p_normal a {
  color: #668E69;
  text-decoration: underline;
}

.p_center {
  text-align: center;
}

.ul_standard {
  padding-left: 1em;
  font-size: 0.9rem;
}
.ul_standard li {
  list-style: disc;
}

.dl_standard {
  width: 100%;
  max-width: 400px;
  margin-top: 0.5em;
  border-top: 2px solid antiquewhite;
  border-right: 2px solid antiquewhite;
  font-size: 0.9rem;
}
.dl_standard dt {
  width: 50%;
  margin: 0;
  padding: 0.2em 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: antiquewhite;
  border-bottom: 2px solid #FAF3ED;
}
.dl_standard dd {
  width: 50%;
  margin: 0;
  padding: 0.2em 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 2px solid antiquewhite;
  background: #ffffff;
  text-align: right;
}

.youtube {
  width: 80%;
  max-width: 800px;
  aspect-ratio: 16/9;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 700px) {
  .youtube {
    width: 90%;
    max-width: 100%;
  }
}
.youtube:after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  background: #FAF3ED;
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  z-index: -1;
}
@media screen and (max-width: 700px) {
  .youtube:after {
    right: -0.5rem;
    bottom: -0.5rem;
  }
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

.pankuz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 80%;
  max-width: 964px;
  margin: 0 auto 1rem;
}
@media screen and (max-width: 943px) {
  .pankuz {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 700px) {
  .pankuz {
    width: 90%;
  }
}
.pankuz li {
  font-size: 0.9em;
  opacity: 0.8;
  line-height: 1.6em;
}
.pankuz li:after {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900;
  padding: 0 0.4em;
}
.pankuz li:last-child:after {
  display: none;
}

/* ~~~~~~~~~~~~~~~~ index - video ~~~~~~~~~~~~~~~~ */
.sec_video {
  text-align: center;
  padding-top: 3em;
}

/* ~~~~~~~~~~~~~~~~ index - concept ~~~~~~~~~~~~~~~~ */
.sec_concept {
  width: 80%;
  max-width: 1160px;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8em 0;
}
@media screen and (max-width: 700px) {
  .sec_concept {
    padding: 4em 0;
  }
}
.sec_concept .headeline {
  min-width: 278px;
  margin-right: 1em;
}
@media screen and (max-width: 700px) {
  .sec_concept .headeline {
    margin-right: 0;
    margin-bottom: 2em;
  }
}
.sec_concept .read {
  line-height: 2em;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* ~~~~~~~~~~~~~~~~ index - journey ~~~~~~~~~~~~~~~~ */
.sec_journey {
  position: relative;
  background-color: #EFF8FA;
  text-align: center;
}
.sec_journey::before {
  content: "";
  display: block;
  background-image: url(../assets/img/nami_top.png);
  background-size: cover;
  width: 100%;
  height: 120px;
}
@media screen and (max-width: 700px) {
  .sec_journey::before {
    height: 60px;
  }
}
.sec_journey::after {
  content: "";
  display: block;
  background-image: url(../assets/img/nami_btm.png);
  background-size: cover;
  width: 100%;
  height: 120px;
  background-position: bottom;
}
@media screen and (max-width: 700px) {
  .sec_journey::after {
    height: 60px;
  }
}
.sec_journey .title {
  min-width: 278px;
  margin: -1rem 0 0 auto;
  display: block;
  width: 40%;
}
@media screen and (max-width: 700px) {
  .sec_journey .title {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 2em;
  }
}
.sec_journey .journey_illust {
  width: 80%;
  max-width: 1160px;
}
@media screen and (max-width: 700px) {
  .sec_journey .journey_illust {
    width: 90%;
    max-width: 100%;
  }
}

.schedules {
  background: #ffffff;
  border-radius: 1rem;
  width: 800px;
  margin: 1rem auto;
  padding: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
@media screen and (max-width: 943px) {
  .schedules {
    width: 90%;
  }
}
@media screen and (max-width: 700px) {
  .schedules {
    padding: 1.5rem;
    margin: 1rem auto 0;
  }
}
.schedules .p_attention {
  text-align: right;
  font-size: 0.8em;
}
@media screen and (max-width: 943px) {
  .schedules .p_attention {
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 700px) {
  .schedules .p_attention {
    text-align: left;
    line-height: 1.5em;
  }
}
.schedules .sc_wrap {
  position: relative;
}
@media screen and (max-width: 943px) {
  .schedules .sc_wrap {
    margin-bottom: 0;
    margin-top: 0;
  }
}
.schedules .sc_wrap:before {
  content: "";
  width: 1em;
  height: 100%;
  display: block;
  left: 0.2rem;
  top: 0.4rem;
  position: absolute;
  border-left: 3px dotted #111111;
}
@media screen and (max-width: 943px) {
  .schedules .sc_wrap:before {
    display: none;
  }
}
.schedules .sc_wrap .time {
  position: relative;
}
.schedules .sc_wrap .time p {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  padding-left: 1.5rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 943px) {
  .schedules .sc_wrap .time p {
    padding-left: 0;
  }
}
.schedules .sc_wrap .time::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #111111;
  border-radius: 1rem;
  position: absolute;
  left: 0;
  top: 0.4rem;
}
@media screen and (max-width: 943px) {
  .schedules .sc_wrap .time::before {
    display: none;
  }
}
.schedules .sc_wrap .details {
  margin-left: 2em;
}
@media screen and (max-width: 943px) {
  .schedules .sc_wrap .details {
    margin-left: 0;
  }
}
.schedules .sc_wrap .details:last-child {
  position: relative;
}
.schedules .sc_wrap .details:last-child:after {
  content: "";
  width: 1em;
  height: 11.5rem;
  display: block;
  left: -2rem;
  bottom: -1rem;
  position: absolute;
  background: #ffffff;
}
@media screen and (max-width: 943px) {
  .schedules .sc_wrap .details:last-child:after {
    display: none;
  }
}
.schedules .sc_wrap .details:last-child .details_wrap {
  margin-bottom: 0;
}
.schedules .sc_wrap .details:last-child.finish:after {
  height: 7.47rem;
}
.schedules .sc_wrap .details .details_wrap {
  background: #FAF3ED;
  border-radius: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1.2rem 1.2rem 1.2rem 2.4rem;
  margin-bottom: 3em;
}
@media screen and (max-width: 943px) {
  .schedules .sc_wrap .details .details_wrap {
    padding: 1.6rem 1rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
  }
}
.schedules .sc_wrap .details .details_wrap.flex_st_parent {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.schedules .sc_wrap .details .details_wrap .images {
  width: 58%;
}
@media screen and (max-width: 943px) {
  .schedules .sc_wrap .details .details_wrap .images {
    width: 50%;
    margin-left: 1rem;
  }
}
@media screen and (max-width: 700px) {
  .schedules .sc_wrap .details .details_wrap .images {
    width: 100%;
    margin-left: 0;
    margin-top: 1em;
  }
}
.schedules .sc_wrap .details .details_wrap .images img {
  width: 47%;
  margin-left: 1%;
  padding: 0;
}
.schedules .sc_wrap .details .details_wrap .images img:nth-child(3) {
  margin-top: 0.5em;
}
.schedules .sc_wrap .details .details_wrap .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.schedules .sc_wrap .details .details_wrap .text .p_strong {
  margin-bottom: 0.5em;
  font-size: 1rem;
}
@media screen and (max-width: 700px) {
  .schedules .sc_wrap .details .details_wrap .text .p_strong {
    margin-bottom: 0;
  }
}
.schedules .sc_wrap .details .details_wrap .text .p_strong a {
  text-decoration: underline;
  color: #668E69;
}
.schedules .sc_wrap .details .details_wrap .text .p_normal {
  font-size: 0.8em;
  line-height: 1.6em;
}

/* ~~~~~~~~~~~~~~~~ index - tour ~~~~~~~~~~~~~~~~ */
.sec_tour {
  padding-top: 4rem;
}
.sec_tour .tours_wrap {
  width: 80%;
  max-width: 1160px;
  margin: 2em auto;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 1024px) {
  .sec_tour .tours_wrap {
    width: 94%;
    max-width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .sec_tour .tours_wrap {
    width: 90%;
    max-width: 100%;
  }
}
.sec_tour .tours_wrap .tours_box {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .sec_tour .tours_wrap .tours_box {
    width: 28%;
  }
}
@media screen and (max-width: 943px) {
  .sec_tour .tours_wrap .tours_box {
    width: 44%;
  }
}
@media screen and (max-width: 700px) {
  .sec_tour .tours_wrap .tours_box {
    width: 100%;
    margin-bottom: 4em;
  }
}
.sec_tour .tours_wrap .tours_box .tours_title {
  text-align: center;
  font-weight: 600;
}
.sec_tour .tours_wrap .tours_box .tours_title .img_profile {
  margin-bottom: 1em;
  width: 100%;
  max-width: 200px;
}
@media screen and (max-width: 943px) {
  .sec_tour .tours_wrap .tours_box .tours_title .img_profile {
    max-width: 150px;
  }
}
@media screen and (max-width: 700px) {
  .sec_tour .tours_wrap .tours_box .tours_title .img_profile {
    margin-bottom: 0.5em;
  }
}
.sec_tour .tours_wrap .tours_box .tours_title .p_strong_more {
  margin: 0.8rem 0 2rem;
}
@media screen and (max-width: 700px) {
  .sec_tour .tours_wrap .tours_box .tours_title .p_strong_more {
    margin: 0.2rem 0 0.8rem;
  }
}
.sec_tour .tours_wrap .tours_box .tours_title .p_strong_more .small {
  font-size: 0.8rem;
}
.sec_tour .tours_wrap .tours_box .tours_details {
  margin: 0;
}
.sec_tour .tours_wrap .tours_box .tours_details p + p {
  margin-top: 1em;
}
.sec_tour .tours_wrap .tours_box .tours_details p + p.p_center {
  margin-top: 2rem;
}
@media screen and (max-width: 700px) {
  .sec_tour .tours_wrap .tours_box .tours_details p + p.p_center {
    margin-top: 1rem;
  }
}

/* ~~~~~~~~~~~~~~~~ index - voice ~~~~~~~~~~~~~~~~ */
.sec_voice {
  width: 80%;
  max-width: 1160px;
  margin: 0 auto 6rem;
  padding-top: 3rem;
}
@media screen and (max-width: 943px) {
  .sec_voice {
    width: 90%;
    max-width: 100%;
  }
}
.sec_voice .headline {
  background: #EFF8FA;
  max-width: 376px;
  margin: 0 0 auto auto;
  display: block;
  border-radius: 0.5em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2rem;
  position: relative;
}
.sec_voice .headline:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 70%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #EFF8FA;
}
@media screen and (max-width: 700px) {
  .sec_voice .headline:before {
    left: 50%;
  }
}
.sec_voice .headlinep {
  margin: 0;
  padding: 0;
}
.sec_voice .voice_box {
  width: 86%;
  max-width: 964px;
  padding: 2rem;
  background: #EFF8FA;
  border-radius: 0.5em;
  margin-top: 4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .sec_voice .voice_box {
    width: 90%;
    max-width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .sec_voice .voice_box {
    width: 100%;
    margin-top: 2rem;
    padding: 1.6rem;
  }
}
.sec_voice .voice_box .voice_img {
  width: 28%;
  position: relative;
}
@media screen and (max-width: 943px) {
  .sec_voice .voice_box .voice_img {
    text-align: center;
  }
}
@media screen and (max-width: 700px) {
  .sec_voice .voice_box .voice_img {
    width: 100%;
    margin-bottom: 1em;
  }
}
.sec_voice .voice_box .voice_img img {
  position: absolute;
  left: -3rem;
  top: -4rem;
  width: 100%;
  max-width: 200px;
}
@media screen and (max-width: 700px) {
  .sec_voice .voice_box .voice_img img {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
  }
}
.sec_voice .voice_box .voice_text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: -3rem;
}
@media screen and (max-width: 1200px) {
  .sec_voice .voice_box .voice_text {
    margin-left: -2rem;
  }
}
@media screen and (max-width: 1024px) {
  .sec_voice .voice_box .voice_text {
    margin-left: -1rem;
  }
}
@media screen and (max-width: 700px) {
  .sec_voice .voice_box .voice_text {
    margin-left: 0;
  }
}
.sec_voice .voice_box .voice_text .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.8rem;
  font-weight: 600;
}
.sec_voice .voice_box .voice_text .name .small {
  font-size: 0.8em;
}
.sec_voice .voice_box .voice_text .name::before {
  content: "";
  display: block;
  width: 4rem;
  height: 2px;
  background: #111111;
  margin-right: 0.5rem;
}
@media screen and (max-width: 943px) {
  .sec_voice .voice_box .voice_text .name::before {
    width: 1rem;
  }
}
.sec_voice .voice_box:nth-child(2n+1) {
  margin: 4rem 0 auto auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}
@media screen and (max-width: 700px) {
  .sec_voice .voice_box:nth-child(2n+1) {
    margin: 2rem 0 auto auto;
  }
}
.sec_voice .voice_box:nth-child(2n+1) .voice_img img {
  left: auto;
  right: -3rem;
  top: -4rem;
}
@media screen and (max-width: 700px) {
  .sec_voice .voice_box:nth-child(2n+1) .voice_img img {
    left: auto;
    right: auto;
    top: auto;
  }
}
.sec_voice .voice_box:nth-child(2n+1) .voice_text {
  margin-left: 0;
  margin-right: -3em;
}
@media screen and (max-width: 1200px) {
  .sec_voice .voice_box:nth-child(2n+1) .voice_text {
    margin-right: -2em;
  }
}
@media screen and (max-width: 1024px) {
  .sec_voice .voice_box:nth-child(2n+1) .voice_text {
    margin-right: -1em;
  }
}

/* ~~~~~~~~~~~~~~~~ index - howto ~~~~~~~~~~~~~~~~ */
.sec_howto {
  margin: 0 auto 6rem;
  padding-top: 3rem;
  width: 55%;
  max-width: 770px;
}
@media screen and (max-width: 943px) {
  .sec_howto {
    width: 90%;
    max-width: 100%;
  }
}
.sec_howto .text {
  margin-top: 2em;
}

/* ~~~~~~~~~~~~~~~~ index - sec_faq ~~~~~~~~~~~~~~~~ */
.sec_faq {
  padding-top: 3rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 700px) {
  .sec_faq {
    margin-bottom: 5rem;
  }
}
.sec_faq .faq_box {
  position: relative;
  width: 55%;
  max-width: 770px;
  margin: 4rem auto -1em;
}
@media screen and (max-width: 1024px) {
  .sec_faq .faq_box {
    width: 80%;
    max-width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .sec_faq .faq_box {
    width: 90%;
    max-width: 100%;
    margin: 2rem auto;
  }
}
.sec_faq .faq_box:before {
  content: "";
  display: block;
  width: 4rem;
  height: 1em;
  border-top: 3px dotted #111111;
  position: absolute;
  top: 0.9rem;
  left: 0;
}
.sec_faq .faq_box dt {
  margin-left: 5rem;
  font-weight: 600;
  margin-bottom: 0.5em;
}
.sec_faq .faq_box dd {
  margin-left: 5rem;
}

.commingsoon {
  width: 100%;
  color: gray;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2em auto 0;
  padding: 4em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sec_tourpage {
  width: 80%;
  max-width: 964px;
  margin: 0 auto 4rem;
  background: #FAF3ED;
  padding: 2rem;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 943px) {
  .sec_tourpage {
    background-image: url(img/nami_btm_tr.png);
    background-position: left -190px;
    background-size: 100%;
    background-repeat: repeat-x;
  }
}
@media screen and (max-width: 700px) {
  .sec_tourpage {
    padding: 1rem;
    width: 90%;
  }
}
.sec_tourpage .tourpage_titles {
  background: #ffffff;
  padding: 2rem 2rem 3rem 4.5rem;
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  border-radius: 0 0 0 100px;
}
@media screen and (max-width: 943px) {
  .sec_tourpage .tourpage_titles {
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    margin-bottom: 1rem;
    background: none;
    text-align: center;
  }
}
@media screen and (max-width: 943px) {
  .sec_tourpage .tourpage_titles {
    padding: 1rem;
  }
}
.sec_tourpage .tourpage_profile {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 768px;
  margin: 0 auto 4rem;
}
@media screen and (max-width: 943px) {
  .sec_tourpage .tourpage_profile {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 90%;
    margin: 0 auto 2rem;
  }
}
.sec_tourpage .tourpage_profile .flex_st_child {
  margin: 0;
}
.sec_tourpage .tourpage_profile dt {
  width: 30%;
  text-align: center;
}
@media screen and (max-width: 943px) {
  .sec_tourpage .tourpage_profile dt {
    width: 20%;
  }
}
@media screen and (max-width: 700px) {
  .sec_tourpage .tourpage_profile dt {
    width: 100%;
  }
}
.sec_tourpage .tourpage_profile dt img {
  width: 100%;
  max-width: 200px;
}
.sec_tourpage .tourpage_profile dt .name {
  font-weight: 600;
  margin-top: 1em;
}
@media screen and (max-width: 943px) {
  .sec_tourpage .tourpage_profile dt .name {
    margin-top: 0.5em;
  }
}
.sec_tourpage .tourpage_profile dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 8rem 0 0 1rem;
}
@media screen and (max-width: 943px) {
  .sec_tourpage .tourpage_profile dd {
    padding: 0 0 0 1rem;
  }
}
@media screen and (max-width: 700px) {
  .sec_tourpage .tourpage_profile dd {
    padding: 0;
  }
}
.sec_tourpage .tourpage_profile dd .p_normal {
  font-size: 0.8em;
  line-height: 1.7em;
}
.sec_tourpage .youtube {
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 943px) {
  .sec_tourpage .youtube {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 700px) {
  .sec_tourpage .youtube {
    width: 100%;
  }
}
.sec_tourpage .tourpage_texts {
  max-width: 768px;
  margin: 0 auto 2rem;
}
@media screen and (max-width: 700px) {
  .sec_tourpage .tourpage_texts {
    width: 90%;
  }
}
.sec_tourpage .tourpage_texts .dl_standard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sec_tourpage .schedules {
  width: 100%;
}
@media screen and (max-width: 943px) {
  .sec_tourpage .schedules {
    width: 100%;
  }
}
