@charset "UTF-8";
/*key color*/
/*タブレット*/
/*スマホ*/
/*汎用横幅*/
/*リンクボタン*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #2E2E2E;
}

header {
  position: fixed;
  top: 0px;
  left: 50%;
  z-index: 98;
  width: 100%;
  background: white;
  border-bottom: 4px solid #FD7D6E;
  transform: translateX(-50%);
  transition: 0.3s;
}
header .company {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 30px;
  padding: 0 5px;
  background: #343F49;
}
header .nav_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}
header .header-menu_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  gap: 10px;
}
header .header-menu_logo a {
  display: flex;
  align-items: center;
  transition: 0.5s;
  font-size: 16px;
  color: #0054A7;
}
header .header-menu_logo a img {
  display: block;
  width: 180px;
  height: auto;
  margin: 0 auto;
  transition: 0.5s;
}
header .header-menu_logo a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1280px) {
  header {
    justify-content: space-between;
    -webkit-clip-path: none;
            clip-path: none;
  }
  header .nav_wrap {
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  header .header-menu_logo a {
    flex-flow: column;
    font-size: 12px;
    align-items: flex-start;
  }
}
header .menu_wrap ul {
  display: flex;
}
header .menu_wrap ul li {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .menu_wrap ul li a {
  transition: 0.5s;
}
header .menu_wrap ul li a.nomal_link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 5px 0.8em;
  font-weight: 700;
}
header .menu_wrap ul li a.nomal_link span {
  display: inline-block;
  line-height: 1.5;
}
header .menu_wrap ul li a.nomal_link span:first-of-type {
  font-size: 14px;
}
header .menu_wrap ul li a.nomal_link:hover {
  color: #FD7D6E;
}
header .menu_wrap ul li a.head-inst {
  display: block;
  width: 30px;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
  transition: 0.5s;
}
header .menu_wrap ul li a.head-inst img {
  width: 100%;
  height: auto;
}
header .menu_wrap ul li a.head-inst:hover {
  opacity: 0.5;
}
header .menu_wrap ul li.contact_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 250px;
  height: 60px;
  border-radius: 40px;
  background: #FD7D6E;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  transition: 0.5s;
}
header .menu_wrap ul li.contact_btn a:hover {
  opacity: 0.5;
}
header .menu_wrap .overlay, header .menu_wrap address {
  display: none;
}
@media screen and (max-width: 1280px) {
  header .menu_wrap {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: -10px;
    right: -100vw;
    z-index: 1;
    opacity: 0;
    transform-origin: right;
    transition: 0.35s cubic-bezier(0.47, 0, 0.75, 0.72);
  }
  header .menu_wrap ul {
    margin-top: 90px;
    width: 100%;
    flex-flow: column;
    opacity: 0;
    transition: 1.2s;
  }
  header .menu_wrap ul li {
    flex-flow: column;
    align-items: flex-end;
  }
  header .menu_wrap ul li:last-of-type {
    margin-right: 0px;
  }
  header .menu_wrap ul li a.nomal_link {
    display: inline-flex;
    justify-content: flex-start;
    flex-flow: column;
    padding: 20px 0.8em;
    width: 100%;
    font-size: 18px;
    color: #fff;
  }
  header .menu_wrap ul li a.nomal_link:hover {
    color: #fff;
    opacity: 0.5;
  }
  header .menu_wrap ul li a.head-inst {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    width: 100%;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
    padding: 20px 0.8em;
    background: #fff;
    font-size: 18px;
    transition: 0.8s;
  }
  header .menu_wrap ul li a.head-inst img {
    width: 30px;
    height: auto;
  }
  header .menu_wrap ul li a.head-inst::before {
    content: "instagram";
    display: inline-block;
    color: #FD7D6E;
    font-weight: 700;
  }
  header .menu_wrap ul li.contact_btn {
    transition: 0.8s;
  }
  header .menu_wrap ul li.contact_btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
    padding: 20px 0.8em;
    border-radius: 0px;
    background: #FD7D6E;
  }
  header .menu_wrap ul li.contact_btn a:hover {
    opacity: 0.5;
  }
  header .menu_wrap.active {
    right: 0;
    opacity: 1;
  }
  header .menu_wrap.active ul {
    opacity: 1;
  }
  header .menu_wrap .overlay {
    display: block;
    position: absolute;
    z-index: -1;
    top: 0vw;
    right: -150vw;
    width: 150vw;
    height: 100vh;
    opacity: 1;
    background: #73ccc9;
    border-radius: 30px 0 0 30px;
    transition: 0.3s;
  }
  header .menu_wrap .overlay.active {
    right: 0vw;
  }
}

.nav_btn {
  display: none;
}
@media screen and (max-width: 1280px) {
  .nav_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    background: #FD7D6E;
    border-radius: 50%;
    transition: 0.5s;
  }
  .nav_btn span {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
  }
  .nav_btn span::after {
    content: "MENU";
    position: absolute;
    font-size: 14px;
    font-weight: 700;
    color: #FFF;
    transition: 0.5s;
  }
  .nav_btn.active {
    background: #fff;
  }
  .nav_btn.active span::after {
    content: "CLOSE";
    color: #73CCC9;
  }
}

/*ベース*/
p {
  font-size: 24px;
  line-height: 1.75;
}
@media screen and (max-width: 1280px) {
  p {
    font-size: 20px;
  }
  p span {
    display: inline-block;
  }
}

article {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 4px;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  h2 {
    font-size: 32px;
  }
}

/*ファーストビュー*/
.first-view {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 95vh;
  background: #8DDDDA;
}
.first-view .first-view-img {
  position: absolute;
  z-index: 1;
  left: 50%;
  translate: -50% 0;
  width: 110%;
  height: 95vh;
}
.first-view .first-view-img img {
  width: 100%;
  display: block;
  height: 95vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 90%;
     object-position: 0 90%;
}
.first-view .copy {
  position: relative;
  z-index: 2;
  width: 80vw;
}
.first-view .copy img {
  width: 100%;
}

.pdf-menu_wrap {
  position: fixed;
  z-index: 97;
  top: 150px;
  right: 0;
}
.pdf-menu_wrap a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  width: 55px;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: upright;
  border-radius: 15px 0 0 15px;
  transition: 0.5s;
  border-top: 4px solid #fff;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  color: #fff;
  background: #5E8CCD;
}
.pdf-menu_wrap a::after {
  content: "";
  display: block;
  width: 40px;
  height: 35px;
  background: url(../img/pdf_icon.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.pdf-menu_wrap a:hover {
  background: #FD7D6E;
}
@media screen and (max-width: 767px) {
  .pdf-menu_wrap {
    width: 100%;
    top: inherit;
    bottom: 0;
    padding: 1em;
  }
  .pdf-menu_wrap a {
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    padding: 0 0.8em;
    border-radius: 5px;
    writing-mode: horizontal-tb;
    text-orientation: unset;
    font-size: 20px;
    border-right: 4px solid #fff;
  }
  .pdf-menu_wrap a::after {
    width: 24px;
    height: 25px;
    background-size: contain;
  }
}

/*コンセプト*/
.concept {
  background: #DBFFF6;
}
.concept h2 {
  -webkit-margin-after: 40px;
          margin-block-end: 40px;
  color: #5E8CCD;
}
.concept h3 {
  -webkit-margin-after: 40px;
          margin-block-end: 40px;
  font-size: 40px;
  color: #5E8CCD;
  text-align: center;
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .concept h3 {
    font-size: 32px;
  }
  .concept h3 span {
    display: inline-block;
  }
}
.concept section {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.concept section:not(:last-of-type) {
  -webkit-margin-after: 60px;
          margin-block-end: 60px;
}
.concept section:nth-last-of-type(2) {
  flex-flow: row-reverse;
}
.concept section img {
  display: block;
  width: 500px;
  height: 100%;
  border-radius: 10px;
}
.concept section .text_wrap {
  width: 650px;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 4px 4px 0 0 #2BB08F;
}
.concept section .text_wrap h4 {
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
  color: #2BB08F;
  font-size: 48px;
  font-weight: 700;
}
.concept section .text_wrap h5 {
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
  -webkit-padding-after: 10px;
          padding-block-end: 10px;
  border-bottom: 2px dashed #2BB08F;
  color: #2BB08F;
  font-size: 32px;
  font-weight: 700;
}
.concept section .text_wrap p b {
  color: #FD7D6E;
}
@media screen and (max-width: 1280px) {
  .concept section {
    flex-flow: column;
    align-items: center;
    justify-content: center;
  }
  .concept section:nth-last-of-type(2) {
    flex-flow: column;
  }
  .concept section img {
    width: 80vw;
    height: auto;
  }
  .concept section .text_wrap {
    width: 80vw;
    padding: 30px;
  }
  .concept section .text_wrap h4 {
    font-size: 32px;
  }
  .concept section .text_wrap h5 {
    font-size: 28px;
  }
  .concept section .text_wrap h5 br {
    display: none;
  }
  .concept section .text_wrap p:nth-of-type(1) {
    -webkit-margin-after: 20px;
            margin-block-end: 20px;
  }
}

/*ラジオ*/
.sub_news {
  padding: 80px 5vw;
  background: #fff8bc;
}
.sub_news h2 {
  position: relative;
  -webkit-margin-after: 40px;
          margin-block-end: 40px;
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
  color: #2BB08F;
}
.sub_news h2 span {
  display: inline-block;
}
.sub_news h2::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
  background-image: url(../img/radio_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.sub_news > p {
  -webkit-margin-after: 40px;
          margin-block-end: 40px;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
.sub_news > p span {
  display: inline-block;
}
.sub_news a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 350px;
  height: 60px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
  border-radius: 40px;
  background: #2BB08F;
  border: 4px solid #fff;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  transition: 0.5s;
}
.sub_news a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .sub_news a {
    width: 90%;
  }
}

/*3つの目的*/
.objectives {
  position: relative;
  padding: 80px 5vw 160px;
  background: url(../img/objectives_bg.png), linear-gradient(180deg, white 0%, white);
  background-repeat: no-repeat, no-repeat;
  background-size: 100%, 100%;
  background-position: bottom center;
}
.objectives > p {
  -webkit-margin-after: 40px;
          margin-block-end: 40px;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
.objectives h2 {
  -webkit-margin-after: 40px;
          margin-block-end: 40px;
  color: #FD7D6E;
}
.objectives .objective_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.objectives .objective {
  width: 650px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  border-radius: 15px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .objectives .objective {
    padding: 30px;
  }
}
.objectives .objective h3, .objectives .objective h4 {
  text-align: center;
}
.objectives .objective h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.objectives .objective h3 span {
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .objectives .objective h3 {
    font-size: 18px;
    font-weight: 500;
  }
}
.objectives .objective h4 {
  font-size: 36px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .objectives .objective h4 {
    font-size: 28px;
  }
  .objectives .objective h4 br {
    display: none;
  }
}
.objectives .objective ol {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .objectives .objective ol {
    font-size: 28px;
  }
}
.objectives .objective p {
  font-size: 24px;
  text-align: center;
}
.objectives .objective.mission {
  background: #FD7D6E;
}
.objectives .objective.vision {
  background: #73CCC9;
}
.objectives .objective.value {
  background: #5E8CCD;
}
@media screen and (max-width: 1280px) {
  .objectives .objective {
    width: 80vw;
    max-width: 650px;
  }
}

/*スケジュール*/
.schedule {
  background: #FD7D6E;
  color: #fff;
}
.schedule h2 {
  -webkit-margin-after: 40px;
          margin-block-end: 40px;
}
.schedule > p {
  -webkit-margin-after: 40px;
          margin-block-end: 40px;
  text-align: center;
}
.schedule ol {
  width: 650px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-flow: column;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .schedule ol {
    width: 90%;
  }
}
.schedule ol li {
  position: relative;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  border: 3px solid #fff;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
}
.schedule ol li:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 40px;
  height: 20px;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-margin-end: auto;
  margin-inline-end: auto;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .schedule ol li {
    font-size: 24px;
  }
}

/*施設風景*/
.facility-scenery h2 {
  -webkit-margin-after: 40px;
          margin-block-end: 40px;
  color: #2BB08F;
}
.facility-scenery p {
  text-align: center;
}
.facility-scenery .thumbnail-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.facility-scenery .thumbnail-list li {
  width: 28.3333333333%;
}
.facility-scenery .thumbnail-list li button {
  display: block;
  width: 100%;
  height: auto;
  transition: 0.5s;
}
.facility-scenery .thumbnail-list li button:hover {
  opacity: 0.6;
}
.facility-scenery .thumbnail-list li img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .facility-scenery .thumbnail-list {
    flex-flow: column;
  }
  .facility-scenery .thumbnail-list li {
    width: 85%;
  }
  .facility-scenery .thumbnail-list li button {
    pointer-events: none;
  }
}
.facility-scenery .modal {
  display: none;
}
.facility-scenery .modal.is-open {
  display: block;
}
.facility-scenery .overlay {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(115, 204, 201, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}
.facility-scenery .zoom-image {
  max-width: 80vw;
  max-height: 80vh;
  width: 100%;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}
.facility-scenery .zoom-image .zoom-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.facility-scenery .zoom-image .modal-close-btn {
  display: block;
  background: transparent;
  border: 0;
  width: 30px;
  height: 30px;
  padding: 5px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}

/*modal Animation*/
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.modal[aria-hidden=false] .overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal[aria-hidden=false] .zoom-image {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal[aria-hidden=true] .overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal[aria-hidden=true] .zoom-image {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal .zoom-image,
.modal .overlay {
  will-change: transform;
}

/*施設概要*/
.overview {
  padding: 80px 20px;
  background: #5E8CCD;
  color: #fff;
}
.overview h2 {
  -webkit-margin-after: 40px;
          margin-block-end: 40px;
}
.overview .data {
  width: 650px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-flow: column;
  -webkit-margin-after: 40px;
          margin-block-end: 40px;
  border-radius: 15px;
  background: #fff;
  font-size: 20px;
  color: #2E2E2E;
}
@media screen and (max-width: 767px) {
  .overview .data {
    width: 90%;
  }
}
.overview .data > div {
  display: flex;
  padding: 20px;
  border-bottom: 1px solid #5E8CCD;
}
.overview .data dt {
  width: 150px;
}
.overview .data dd {
  width: calc(100% - 150px);
  line-height: 1.75;
}
.overview .data dd img {
  display: block;
  width: 200px;
}
@media screen and (max-width: 767px) {
  .overview .data > div {
    flex-flow: column;
  }
  .overview .data > div dt {
    width: 100%;
    -webkit-margin-after: 10px;
            margin-block-end: 10px;
    color: #5E8CCD;
  }
  .overview .data > div dd {
    width: 100%;
  }
}
.overview > p {
  text-align: center;
}
.overview .document {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .overview .document {
    flex-flow: column;
    gap: 20px;
  }
}
.overview .document li a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 250px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 30px;
  font-size: 20px;
  transition: 0.5s;
}
@media screen and (max-width: 1280px) {
  .overview .document li a {
    width: 85%;
  }
}
.overview .document li a:hover {
  background: #fff;
  color: #5E8CCD;
}

/*アクセス*/
.access {
  background: #fff;
  display: flex;
}
.access > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  width: 50%;
  padding: 80px 20px;
}
.access h2 {
  color: #FD7D6E;
}
.access p {
  text-align: center;
}
.access iframe {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .access {
    flex-flow: column;
  }
  .access > div {
    width: 100%;
  }
  .access iframe {
    width: 100%;
  }
}

/*お問い合わせ*/
.contact {
  background: url(../img/nanamebg.png), linear-gradient(180deg, rgba(115, 204, 201, 0.8) 0%, rgba(115, 204, 201, 0.8));
  background-repeat: repeat, no-repeat;
  background-size: 2%, 100%;
  background-position: bottom center;
}
.contact .contents-wrap {
  width: 650px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: 15px;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .contact .contents-wrap {
    width: 90%;
  }
}
.contact .contents-wrap h2 {
  color: #FD7D6E;
  -webkit-margin-after: 40px;
          margin-block-end: 40px;
}
.contact .contents-wrap > p {
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.75;
  font-size: 24px;
}
.contact .contents-wrap > p:first-of-type {
  -webkit-margin-after: 40px;
          margin-block-end: 40px;
}
.contact .contents-wrap > p b {
  color: #2BB08F;
}
@media screen and (max-width: 767px) {
  .contact .contents-wrap > p br {
    display: none;
  }
}
.contact .contents-wrap .number:nth-of-type(2) {
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
}
.contact .contents-wrap .number address {
  font-weight: 900;
  font-size: 56px;
  text-align: center;
  color: #FD7D6E;
}
@media screen and (max-width: 767px) {
  .contact .contents-wrap .number address {
    font-size: 32px;
  }
}
.contact .contents-wrap .number small {
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
  display: block;
  font-size: 22px;
  text-align: center;
}
.contact .contents-wrap .email {
  font-weight: 900;
  font-size: 36px;
  color: #FD7D6E;
}
.contact .contents-wrap .email address {
  display: inline-block;
  font-weight: 900;
  font-size: 36px;
  color: #FD7D6E;
}
@media screen and (max-width: 767px) {
  .contact .contents-wrap .email {
    font-size: 18px;
    text-align: center;
  }
  .contact .contents-wrap .email address {
    font-size: 24px;
    text-align: center;
  }
}

/*運営会社*/
.company {
  padding: 80px 20px;
  background: #343F49;
  color: #fff;
}
.company img {
  display: block;
  margin: 0 auto 40px;
  width: 300px;
  height: auto;
}
.company .data {
  width: 650px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-flow: column;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .company .data {
    width: 90%;
  }
}
.company .data > div {
  display: flex;
  padding: 10px;
  border-bottom: 1px solid #fff;
}
.company .data dt {
  width: 150px;
}
.company .data dd {
  width: calc(100% - 150px);
  line-height: 1.75;
}
.company .data dd ul {
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
  list-style: disc;
}
@media screen and (max-width: 767px) {
  .company .data > div {
    flex-flow: column;
  }
  .company .data > div dt {
    width: 100%;
    -webkit-margin-after: 10px;
            margin-block-end: 10px;
  }
  .company .data > div dd {
    width: 100%;
  }
}

/*footer*/
footer {
  background: #FD7D6E;
  color: #fff;
}
footer small {
  display: block;
  padding: 1em;
  text-align: center;
}
/*# sourceMappingURL=style.css.map */