@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

body {
  --scroll-gap: 5px;
  background-color: #F5F8FA;
}

/* キービジュアル
******************************************
*/
.header__wrapper {
  position: relative;
  background-image: url("../../img/1_kv_pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: auto;
  height: 560px;
}

.header__wrapper::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.title {
  padding-top: 32px;
  margin-left: 16.3%;
}

.header__title {
  position: absolute;
  width: 260px;
  height: 32px;
  font-family: inter;
  font-size: 32px;
  font-weight: normal;
  color: #FFFFFF;
}
.header__title span {
  padding-left: 12px;
}

.sub-title {
  padding-top: 32px;
  margin-left: 16.3%;
}

.header__sub-title {
  position: absolute;
  letter-spacing: 0.79px;
  line-height: 72px;
  padding-top: 361px;
  width: auto;
  height: 32px;
  font-family: inter;
  font-size: 52px;
  font-weight: normal;
  color: #FFFFFF;
}
.header__sub-title span {
  letter-spacing: 0.4px;
}

@media screen and (max-width: 1190px) {
  .title {
    margin-left: 11.41%;
  }
  .sub-title {
    margin-left: 11.41%;
  }
  .header__title {
    font-size: 25.6px;
  }
  .header__sub-title {
    font-size: 41.6px;
  }
}
@media screen and (max-width: 910px) {
  .header__title {
    font-size: 19.2px;
  }
  .header__sub-title {
    font-size: 31.2px;
  }
}
@media screen and (max-width: 700px) {
  .title {
    margin-left: 20px;
  }
  .sub-title {
    margin-left: 20px;
  }
  .header__title {
    font-size: 19.2px;
  }
  .header__sub-title {
    font-size: 31.2px;
  }
}
@media screen and (max-width: 640px) {
  .header__title {
    font-size: 16px;
  }
  .header__sub-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 450px) {
  .header__wrapper {
    background-image: url("../../img/2_kv_sp.png");
    height: 240px;
  }
  .title {
    padding-top: 16px;
    margin-left: 20px;
  }
  .title span {
    padding-left: 1px;
  }
  .sub-title {
    padding-top: 128px;
    margin-left: 20px;
  }
  .header__title {
    font-size: 16px;
  }
  .header__sub-title {
    margin-right: 30px;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.2px;
  }
  .header__sub-title span {
    letter-spacing: -0.3px;
  }
}
/* スライダー
******************************************
*/
.slider__background {
  background-color: #F5F8FA;
  height: 531px;
}

.slider_wrapper {
  height: 120px;
}

.slider__title {
  padding-top: 80px;
  position: absolute;
  margin-left: 350px;
  margin-right: 348px;
  max-width: 1230px;
  height: 34px;
  font-family: inter;
  font-size: 34px;
  font-weight: normal;
  color: black;
  letter-spacing: 0.5px;
}

@keyframes infiniteScrollRTL {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * 100% / var(--_infinite-scroll-clone-length) - var(--_infinite-scroll-gap, var(--scroll-gap)) / var(--_infinite-scroll-clone-length)));
  }
}
@keyframes infiniteScrollLTR {
  0% {
    transform: translateX(calc(-1 * 100% / var(--_infinite-scroll-clone-length) - var(--_infinite-scroll-gap, var(--scroll-gap)) / var(--_infinite-scroll-clone-length)));
  }
  100% {
    transform: translateX(0);
  }
}
.js-scrollTrack {
  width: -moz-max-content;
  width: max-content;
}
.js-scrollTrack[data-scroll-initialized=true][data-scroll-direction=left] {
  animation: infiniteScrollRTL var(--_infinite-scroll-duration) linear infinite;
}
.js-scrollTrack[data-scroll-initialized=true][data-scroll-direction=right] {
  animation: infiniteScrollLTR var(--_infinite-scroll-duration) linear infinite;
}
.js-scrollTrack[data-scroll-pause-on-hover=true]:hover {
  animation-play-state: paused;
}

.js-scrollList {
  display: flex;
  flex-wrap: nowrap;
  gap: 0 var(--_infinite-scroll-gap, var(--scroll-gap));
}

.js-scrollCont {
  flex-shrink: 0;
}

.scroll_wrap {
  width: 100%;
  overflow: hidden;
}

.scroll_cont {
  display: grid;
  place-content: center;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  color: white;
  font-size: 1.375rem;
  font-weight: bold;
}

@media screen and (max-width: 1600px) {
  .slider__title {
    margin-left: 140px;
    margin-right: 140px;
    font-size: 30px;
  }
}
@media screen and (max-width: 1100px) {
  .slider__title {
    margin-left: 200px;
    margin-right: 200px;
    font-size: 28px;
  }
}
@media screen and (max-width: 950px) {
  .slider__title {
    padding-top: 60px;
    margin-left: 150px;
    margin-right: 150px;
    font-size: 26px;
  }
}
@media screen and (max-width: 700px) {
  .slider__title {
    padding-top: 60px;
    margin-left: 100px;
    margin-right: 100px;
    font-size: 24px;
  }
}
@media screen and (max-width: 550px) {
  .slider__title {
    padding-top: 60px;
    margin-left: 50px;
    margin-right: 50px;
    font-size: 22px;
  }
}
@media screen and (max-width: 450px) {
  .slider__background {
    background-color: #F5F8FA;
    height: 300px;
  }
  .slider_wrapper {
    height: 140px;
  }
  .slider__title {
    padding-top: 37px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 20px;
    letter-spacing: -0.3px;
  }
  .scroll_cont {
    display: grid;
    place-content: center;
    flex-shrink: 0;
    width: 186px;
    height: 120px;
    aspect-ratio: 1/1;
    color: white;
    font-size: 1.375rem;
    font-weight: bold;
  }
  .scroll_cont img {
    width: 186px;
    height: 120px;
  }
  .js-scrollList {
    gap: 18px;
  }
}
/* ポイント
******************************************
*/
.point__inner:nth-of-type(1) {
  height: 580px;
  background-color: #FFFFFF;
}

.point__inner:nth-of-type(2) {
  height: 562px;
}

.point__inner:nth-of-type(3) {
  height: 320px;
  position: relative;
  overflow: scroll;
}

.point__inner:nth-of-type(4) {
  height: 580px;
  background-color: #FFFFFF;
}

.point__first {
  height: 420px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-top: 83px;
}

.point__second {
  height: 420px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-top: 83px;
}

.point__third {
  height: 420px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-top: 83px;
}

.point__text {
  order: 1;
  padding-top: 63px;
  height: 420px;
  max-width: 674px;
}
.point__text .point__btn {
  position: relative;
  width: 140px;
  height: 40px;
  background-color: #0092D3;
  border-radius: 20px;
  color: #FFFFFF;
}
.point__text .point__btn p {
  position: absolute;
  top: 9px;
  left: 37px;
  font-family: inter;
}
.point__text .point__title {
  padding-top: 17px;
  max-width: 674px;
}
.point__text .point__title h2 {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -1.93px;
  font-family: inter;
}
.point__text .point__explain {
  padding-top: 15px;
  max-width: 674px;
}
.point__text .point__explain h3 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.96px;
  font-family: inter;
	line-height:1.5;
}
.point__text .point__attention {
  padding-top: 46px;
  max-width: 674px;
}
.point__text .point__attention h4 {
  font-size: 14px;
  font-weight: 400;
  color: #848484;
  letter-spacing: -0.82px;
  font-family: inter;
}

.point__picture {
  order: 2;
  max-width: 560px;
}
.point__picture img {
  max-width: 100%;
}

.point__text-second {
  order: 2 !important;
}

.point__picture-second {
  order: 1 !important;
}

.point__pictures {
  position: relative;
  background-image: url("../../img/11_pic_pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: auto;
  height: 320px;
  margin: 0 auto;
}
.point__pictures::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.point__pictures-comments {
  height: 250px;
  max-width: 800px;
  position: absolute;
  color: #FFFFFF;
  line-height: 24px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding-top: 78px;
  padding-left: 54px;
}
.point__pictures-comments p {
  width: auto;
  font-size: 18px;
  line-height: 36px;
  font-family: inter;
	display:flex;
	align-items:center;
}

.point__pictures-comments span,point__pictures-comments img {
	display:block
}

.point__pictures-comments span {
 margin-left:10px
}

@media screen and (max-width: 1300px) {
  .point__inner:nth-of-type(1) {
    background-color: #FFFFFF;
  }
  .point__inner:nth-of-type(4) {
    background-color: #FFFFFF;
  }
  .point__first {
    height: auto;
    padding: 0 20px;
    width: auto;
    margin: 0 auto;
    padding-top: 83px;
  }
  .point__second {
    height: auto;
    padding: 0 20px;
    width: auto;
    margin: 0 auto;
    padding-top: 83px;
  }
  .point__text-second {
    padding-left: 20px;
  }
  .point__third {
    height: auto;
    padding: 0 20px;
    width: auto;
    margin: 0 auto;
    padding-top: 83px;
  }
  .point__text {
    order: 1;
    margin: 0 auto;
    height: 340px;
    padding-top: initial;
  }
  .point__picture {
    order: 2;
    margin: 0 auto;
    height: auto;
  }
}
@media screen and (max-width: 950px) {
  .point__inner:nth-of-type(1) {
    height: auto;
    background-color: #FFFFFF;
  }
  .point__inner:nth-of-type(2) {
    height: auto;
  }
  .point__inner:nth-of-type(4) {
    height: auto;
    background-color: #FFFFFF;
  }
  .point__first {
    display: block;
    padding-top: 40px;
  }
  .point__text {
    order: 1;
    margin: 0 auto;
    height: 240px;
    padding-top: initial;
  }
  .point__second {
    padding-top: 40px;
    display: block;
  }
  .point__text-second {
    padding-left: initial;
  }
  .point__third {
    padding-top: 40px;
    display: block;
  }
  .point__text {
    padding-top: 20px;
    max-width: 560px;
  }
  .point__text {
    order: 1;
    max-width: 674px;
  }
  .point__text .point__btn {
    position: relative;
    width: 100px;
    height: 30px;
    font-size: 14px;
    background-color: #0092D3;
    border-radius: 20px;
    color: #FFFFFF;
  }
  .point__text .point__btn p {
    position: absolute;
    top: 8px;
    left: 24px;
    font-family: inter;
  }
  .point__text .point__title {
    padding-top: 17px;
    max-width: 674px;
  }
  .point__text .point__title h2 {
    font-size: 22px;
  }
  .point__text .point__explain {
    padding-top: 15px;
    max-width: 674px;
  }
  .point__text .point__explain h3 {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.96px;
    font-family: inter;
  }
  .point__text .point__attention {
    padding-top: 46px;
    max-width: 674px;
  }
  .point__text .point__attention h4 {
    font-size: 12px;
    font-weight: 400;
    color: #848484;
    letter-spacing: -0.82px;
    font-family: inter;
  }
}
@media screen and (max-width: 800px) {
  .point__pictures-comments {
    padding-top: 48px;
  }
}
@media screen and (max-width: 660px) {
  .point__pictures-comments {
    padding-top: 18px;
  }
  .point__pictures-comments p {
    font-size: 16px;
	  margin-bottom:10px
  }

	  .point__pictures-comments span {
    line-height:1.5
  }
}
@media screen and (max-width: 550px) {
  .point__first {
    display: block;
  }
  .point__text .point__attention {
    padding-top: 19px;
    max-width: 674px;
  }
  .point__inner:nth-of-type(3) {
    height: 428px;
    position: relative;
  }
  .point__pictures-comments {
    padding-top: 25px !important;
    margin: 0 auto;
    font-size: 16px;
    padding: 0 20px;
  }
  .point__pictures {
    position: relative;
    background-image: url("../../img/12_pic_sp.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: auto;
    margin: 0 auto;
	  padding:20px 0px;
  }
  .point__pictures::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
/* 物件情報
******************************************
*/
.destinations__title {
  padding-top: 89px;
  margin: 0 auto;
  max-width: 400px;
  text-align: center;
}
.destinations__title h1 {
  font-size: 42px;
  font-family: inter;
  font-weight: 500;
}

.destinations__category {
  padding-top: 67px;
  padding-bottom: 53px;
  margin: 0 auto;
  max-width: 650px;
  text-align: center;
}
.destinations__category h2 {
  font-size: 36px;
  font-family: inter;
  font-weight: 400;
}

.destinations__articles {
  margin: 0 auto;
  max-width: 1300px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 20px 20px;
  overflow: scroll;
}

.destinations__item {
  position: relative;
  width: 420px;
  height: 780px;
  border-radius: 10px;
  background-color: #FFFFFF;
  font-family: inter;
}
.destinations__item p {
  width: 372px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  padding: 24px 0 0 24px;
  font-size: 24px;
  font-weight: 500px;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.destinations__table-item--location,
.destinations__table-item--hours,
.destinations__table-item--english,
.destinations__table-item--fee{
-webkit-line-clamp: 1;
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
}

.destinations__table-item--access{
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.destinations__table-item--highlights{
	-webkit-line-clamp: 3;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}


.destinations__item .destinations__thumbnail {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.destinations__item .destinations__thumbnail img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.destinations__item--title {
  position: relative;
  padding: 0 0 0 24px;
  width: 372px;
  height: 60px;
}

.destinations__tag {
  padding: 20px 0 0 24px;
  border-radius: 14px;
  line-height: 45px;
}
.destinations__tag span {
  padding: 5px 24px;
  border-radius: 24px;
  border: 1px solid black;
  background-color: #F5F8FA;
  color: black;
  text-decoration: none;
  margin-right:5px;
}

.destinations__table {
  margin: 20px 20px;
}

.destinations__table-item td {
  line-height: 28px;
}

.destinations__table-item--gray {
  color: #848484;
}

.destinations__table-item--text {
  padding-left: 35px;
}

.destinations__btn {
  position: absolute;
  bottom: 24px;
  left: 24px;
  margin: 0 auto;
  background-color: #0092D3;
  width: 372px;
  height: 50px;
  color: #FFFFFF;
}
.destinations__btn a {
  color: #FFFFFF;
  text-align: center;
  align-items: center;
  line-height: 50px;
  display: block;
  width: 372px;
  height: 50px;
  text-decoration: none;
}
.destinations__btn a img {
  padding-left: 25px;
}

.destinations__iframe {
  padding-top: 40px;
  margin: 0 auto;
  max-width: 1300px;
  height: 540px;
  overflow: scroll;
}

@media screen and (max-width: 1300px) {
  .destinations__title h1 {
    font-size: 37.8px;
  }
  .destinations__category h2 {
    font-size: 32.4px;
  }
  .destinations__item {
    margin-left: 20px;
  }

	.destinations__iframe iframe {
		width:100% !important;
}
}
@media screen and (max-width: 800px) {
  .destinations__title h1 {
    font-size: 33.6px;
  }
  .destinations__category h2 {
    font-size: 28.8px;
  }
  .destinations__title {
    padding-top: 45px;
  }
  .destinations__category {
    padding-top: 33px;
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 550px) {
  .destinations__title h1 {
    font-size: 28px;
  }
  .destinations__category h2 {
    font-size: 22px;
  }

  .destinations__item {
    position: relative;
    width: 300px;
    height: 745px;
    border-radius: 10px;
    background-color: #FFFFFF;
    font-family: inter;
}
.destinations__thumbnail{
  width: 300px !important;
  height: 190px !important;
}

.destinations__item--title {
  position: relative;
  padding: 0 0 0 24px;
  width: 268px;
  height: 60px;
}

.destinations__item p {
  font-size: 18px;
  width: 260px;
  left: 50%;
  padding: 24px 0 0 0;
}

.destinations__tag span {
	padding: 0px 7px;
	font-size: 14px;
	display: inline-block;
	max-width: 110px;
	height: 20px;
	text-align: center;
}

.destinations__tag {
  line-height:initial;
}

.destinations__articles {
  gap: initial;
}

.destinations__btn{
  width: 268px;
  height: 40px;
  bottom: 16px;
    left: 16px;
}

.destinations__btn a {
  width: 268px;
  height: 40px;
  line-height: 40px;
}

.destinations__table-item{
  display: block;
  height: 56px;
}


.destinations__table-item td{
  line-height: 15px;
}

.destinations__table-item--text {
  padding-left: initial;
}

.destinations__table-item--gray{
  padding-bottom: 5px;
}

.destinations__table-item--text{
  padding-bottom:initial;
}

.destinations__table{
  font-size: 14px;
  margin: 16px 16px;
}

.destinations__tag {
  padding: 20px 0 0 15px;
}
}
/* 問い合わせフォーム
******************************************
*/

.form__wrapper {
  background-color: #FFFFFF;
}

form {
  padding-bottom: 90px;
}

.form__title {
  padding-top: 78px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  height: 42px;
}
.form__title h1 {
  font-family: inter;
  font-size: 34px;
  font-weight: 400;
  color: black;
}

.form__description {
  padding-top: 60px;
  max-width: 900px;
  text-align: left;
  margin: 0 auto;
  height: 42px;
  font-family: inter;
  font-size: 16px;
  font-weight: 400;
  color: black;
}

form {
  max-width: 900px;
  margin: 0 auto;
}

.form__contents--items {
  display: flex;
  justify-content: space-between;
  line-height: 98px;
}

hr {
  margin: 0 auto;
  height: 0.5px;
  background-color: #D9D9D9;
  width: 900px;
  border: none;
}

.form__line-first {
  margin-top: 56px;
}

.form__contents {
  font-family: inter;
  font-size: 16px;
  font-weight: 400;
  color: black;
}
.form__contents .form__input {
  margin: 24px 0;
  width: 614px;
  border: solid 1px #BEBEBE;
  padding-left: 16px;
}
.form__contents select {
  margin: 24px 0;
  width: 630px;
  border: solid 1px #BEBEBE;
  padding-left: 16px;
}

.form__contents textarea {
  margin: 24px 0 24px 0;
  width: 612px;
  border: solid 1px #BEBEBE;
  color: black;
  padding-top: 15px;
  padding-left: 16px;
}

::-moz-placeholder {
  color: #C3C3C3;
  font-size: 16px;
}

::placeholder {
  color: #C3C3C3;
  font-size: 16px;
}

.form__check {
  padding-top: 55px;
  padding-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.form__btn {
  width: 372px;
  height: 50px;
  margin: 0 auto;
  font-family: inter;
  font-size: 20px;
  color: #FFFFFF;
  background-color: #0092D3;
  border: none;
}

button {
  width: 372px;
  height: 50px;
}

@media screen and (max-width: 950px) {
  form {
    padding-bottom: 90px;
  }
  .form__title {
    padding-top: 78px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    height: 42px;
  }
  .form__title h1 {
    font-family: inter;
    font-size: 34px;
    font-weight: 400;
    color: black;
  }
  .form__description {
    padding-top: 60px;
    max-width: 650px;
    text-align: left;
    margin: 0 auto;
    height: 42px;
    font-family: inter;
    font-size: 16px;
    font-weight: 400;
    color: black;
  }
  form {
    max-width: 650px;
    margin: 0 auto;
  }
  .form__contents--items {
    display: flex;
    justify-content: space-between;
    line-height: 98px;
  }
  hr {
    margin: 0 auto;
    height: 0.5px;
    background-color: #D9D9D9;
    width: 650px;
    border: none;
  }
  .form__line-first {
    margin-top: 56px;
  }
  .form__contents {
    font-family: inter;
    font-size: 16px;
    font-weight: 400;
    color: black;
  }
  .form__contents .form__input {
    margin: 24px 0;
    width: 414px;
    border: solid 1px #BEBEBE;
    padding-left: 16px;
  }
  .form__contents select {
    margin: 24px 0;
    width: 430px;
    border: solid 1px #BEBEBE;
    padding-left: 16px;
  }
  .form__contents textarea {
    margin: 24px 0 24px 0;
    width: 412px;
    border: solid 1px #BEBEBE;
    color: black;
    padding-top: 15px;
    padding-left: 16px;
  }
  ::-moz-placeholder {
    color: #C3C3C3;
    font-size: 16px;
  }
  ::placeholder {
    color: #C3C3C3;
    font-size: 16px;
  }
  .form__check {
    padding-top: 55px;
    padding-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
  }
  .form__btn {
    width: 372px;
    height: 50px;
    margin: 0 auto;
    font-family: inter;
    font-size: 20px;
    color: #FFFFFF;
    background-color: #0092D3;
    border: none;
  }
  button {
    width: 372px;
    height: 50px;
  }
}
@media screen and (max-width: 660px) {
  form {
    padding-bottom: 90px;
  }
  .form__title {
    padding-top: 78px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    height: 42px;
  }
  .form__title h1 {
    font-family: inter;
    font-size: 34px;
    font-weight: 400;
    color: black;
  }
  .form__description {
    padding-top: 60px;
    max-width: 500px;
    text-align: left;
    margin: 0 auto;
    height: 42px;
    font-family: inter;
    font-size: 16px;
    font-weight: 400;
    color: black;
  }
  form {
    max-width: 500px;
    margin: 0 auto;
  }
  .form__contents--items {
    display: flex;
    justify-content: space-between;
    line-height: 98px;
  }
  hr {
    margin: 0 auto;
    height: 0.5px;
    background-color: #D9D9D9;
    width: 500px;
    border: none;
  }
  .form__line-first {
    margin-top: 56px;
  }
  .form__contents {
    font-family: inter;
    font-size: 16px;
    font-weight: 400;
    color: black;
  }
  .form__contents .form__input {
    margin: 24px 0;
    width: 384px;
    border: solid 1px #BEBEBE;
    padding-left: 16px;
  }
  .form__contents select {
    margin: 24px 0;
    width: 400px;
    border: solid 1px #BEBEBE;
    padding-left: 16px;
  }
  .form__contents textarea {
    margin: 24px 0 24px 0;
    width: 382px;
    border: solid 1px #BEBEBE;
    color: black;
    padding-top: 15px;
    padding-left: 16px;
  }
  ::-moz-placeholder {
    color: #C3C3C3;
    font-size: 16px;
  }
  ::placeholder {
    color: #C3C3C3;
    font-size: 16px;
  }
  .form__check {
    padding-top: 55px;
    padding-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
  }
  .form__btn {
    width: 372px;
    height: 50px;
    margin: 0 auto;
    font-family: inter;
    font-size: 20px;
    color: #FFFFFF;
    background-color: #0092D3;
    border: none;
  }
  button {
    width: 372px;
    height: 50px;
  }
}
@media screen and (max-width: 550px) {
  form {
    padding-bottom: 40px;
  }
  .form__title {
    padding: 40px 12px 60px 12px;
    width: auto;
    text-align: center;
    margin: 0 auto;
    height: 42px;
  }
  .form__title h1 {
    font-family: inter;
    font-size: 28px;
    font-weight: 400;
    color: black;
  }
  .form__description {
    padding-top: 38px;
    max-width: 900px;
    text-align: left;
    margin: 0 auto;
    height: 42px;
    font-family: inter;
    font-size: 14px;
    font-weight: 400;
    color: black;
    padding: 0 12px;
  }
  .form__contents--items {
    display: block;
	line-height: 30px;
	margin: 0 auto;
	width: 335px;
  }
  hr {
    margin: 0 auto;
    height: 0.5px;
    background-color: #D9D9D9;
    width: 335px;
    border: none;
  }
  .form__line-first {
    margin-top: 56px;
  }
  .form__contents {
    font-family: inter;
    font-size: 16px;
    font-weight: 400;
    color: black;
  }
  .form__contents .form__input {
    margin: 12px 0;
    width: 319px;
    height: 40px;
    border: solid 1px #BEBEBE;
    padding-left: 16px;
  }
  .form__contents select {
    margin: 12px 0;
    width: 335px;
    height: 40px;
    border: solid 1px #BEBEBE;
    padding-left: 16px;
  }
  .form__contents textarea {
    margin: 12px 0 12px 0;
    width: 319px;
    border: solid 1px #BEBEBE;
    color: black;
    padding-top: 15px;
    padding-left: 16px;
  }
  ::-moz-placeholder {
    font-size: 14px;
  }
  ::placeholder {
    font-size: 14px;
  }
  .form__check {
    padding-top: 55px;
    padding-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
  }
  .form__btn {
    width: 335px;
    height: 40px;
    font-size: 18px;
  }
  button {
    width: 335px;
    height: 40px;
  }
}
/* フッター
******************************************
*/
.footer__contents {
  align-items: center;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  font-family: inter;
  font-size: 14px;
  height: 49px;
}

.footer__text p{
	padding: 0 13px;
}

.footer__menu {
  max-width: 600px;
  display: flex;
  justify-content: space-between;
  list-style: none;
  font-family: inter;
}
.footer__menu li {
  text-align:center;
  padding: 0 13px;
  text-decoration: underline;
}

.footer__menu a{
	color:black;
}

@media screen and (max-width: 650px) {
  .footer__contents {
    display: block;
    justify-content: center;
    margin: 0 auto;
    font-family: inter;
    font-size: 12px;
    height: 74px;
  }
  .footer__menu {
    max-width: 262px;
    justify-content: initial;
    list-style: none;
    margin: 0 auto;
    font-family: inter;
  }
  .footer__menu li {
    padding: 13px 13px;
    text-decoration: underline;
  }
  .footer__menu--wrapper {
    text-align: left;
  }
  .footer__text {
    text-align: center;
  }
}/*# sourceMappingURL=index.css.map */
