@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");
/* noto-sans-jp-regular - latin_japanese */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: local("Noto Sans Japanese Regular"), local("NotoSansJapanese-Regular"), url("../fonts/NotoSansJP-Regular.woff2") format("woff2"), url("../fonts/NotoSansJP-Regular.woff") format("woff");
}

/* noto-sans-jp-500 - latin_japanese */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: local("Noto Sans Japanese Medium"), local("NotoSansJapanese-Medium"), url("../fonts/NotoSansJP-Medium.woff2") format("woff2"), url("../fonts/NotoSansJP-Medium.woff") format("woff");
}

/* noto-sans-jp-700 - latin_japanese */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: local("Noto Sans Japanese Bold"), local("NotoSansJapanese-Bold"), url("../fonts/NotoSansJP-Bold.woff2") format("woff2"), url("../fonts/NotoSansJP-Bold.woff") format("woff");
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-variant-ligatures: none;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 100%;
  font-weight: 400;
  color: #000;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

img[src$=".svg"] {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  display: block;
}

/* FONT
***************************************************************/
.sans {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}

.serif {
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
}

.roboto {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.lato {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}

.yuGothic {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", Verdana, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}

/* LINK
***************************************************************/
a {
  transition: 0.3s ease;
  text-decoration: none;
  color: #000;
}

a:active,
a:focus {
  outline: none;
}

a img {
  transition: 0.3s ease;
}

/* NONE
***************************************************************/
.none {
  display: none;
}

.linkNone {
  pointer-events: none;
}

@media all and (min-width: 681px) {
  .nonePC {
    display: none !important;
  }
  .linkNonePC {
    pointer-events: none;
  }
}

@media all and (max-width: 680px) {
  .noneSP {
    display: none !important;
  }
  .linkNoneSP {
    pointer-events: none;
  }
}

/* clearfix
***************************************************************/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* Load Effect
***************************************************************/
@keyframes opacity {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body {
  animation: opacity ease 1s forwards;
}

/* GoogleMap
***************************************************************/
.gm-style-pbt {
  text-align: center;
}

@media all and (max-width: 680px) {
  .gm-style-pbt {
    font-size: 16px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* lazyload
***************************************************************/
.lazyload {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  transition: opacity ease 0.3s;
}

/* フェード
***************************************************************/
@media all and (min-width: 681px) {
  .action.up {
    opacity: 0;
    transform: translate(0, 100px);
    transition: opacity 1000ms ease 0.25s, transform 1000ms ease 0.25s;
  }
  .action.left {
    opacity: 0;
    transform: translate(-100px, 0);
    transition: opacity 1000ms ease 0.25s, transform 1000ms ease 0.25s;
  }
  .action.right {
    opacity: 0;
    transform: translate(100px, 0);
    transition: opacity 1000ms ease 0.25s, transform 1000ms ease 0.25s;
  }
  .action.up.scrollin,
  .action.left.scrollin,
  .action.right.scrollin {
    opacity: 1;
    transform: translate(0, 0);
  }
  .action.delay1 {
    transition: opacity 1000ms ease 0.5s, transform 1000ms ease 0.5s;
  }
  .action.delay2 {
    transition: opacity 1000ms ease 0.75s, transform 1000ms ease 0.75s;
  }
  .action.delay3 {
    transition: opacity 1000ms ease 1s, transform 1000ms ease 1s;
  }
}

@media all and (max-width: 680px) {
  .action.up_sp {
    opacity: 0;
    transform: translate(0, 50px);
    transition: opacity 750ms ease 0.25s, transform 750ms ease 0.25s;
  }
  .action.left_sp {
    opacity: 0;
    transform: translate(-50px, 0);
    transition: opacity 750ms ease 0.25s, transform 750ms ease 0.25s;
  }
  .action.right_sp {
    opacity: 0;
    transform: translate(50px, 0);
    transition: opacity 750ms ease 0.25s, transform 750ms ease 0.25s;
  }
  .action.up_sp.scrollin,
  .action.left_sp.scrollin,
  .action.right_sp.scrollin {
    opacity: 1;
    transform: translate(0, 0);
  }
  .action.delay1_sp {
    transition: opacity 750ms ease 0.5s, transform 750ms ease 0.5s;
  }
  .action.delay2_sp {
    transition: opacity 750ms ease 0.75s, transform 750ms ease 0.75s;
  }
  .action.delay3_sp {
    transition: opacity 750ms ease 1s, transform 750ms ease 1s;
  }
}

.main {
  overflow: hidden;
}

.main {
  padding-top: 114px;
}

.head {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5555;
  background-color: #fff;
}

.head .inner {
  width: 100%;
  height: 114px;
  padding: 0 70px;
  display: flex;
  align-items: center;
}

.head .siteID {
  display: flex;
  align-items: center;
}

.head .siteID .logo {
  width: 202px;
}

.head .siteID .text {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.67;
  margin-left: 38px;
}

.conversion1 {
  width: 508px;
  height: 114px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  right: 70px;
  z-index: 6666;
}

.conversion1 .tel1 {
  width: 234px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.conversion1 .tel1 .t1 {
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding-left: 18px;
  margin-top: 5px;
}

.conversion1 .btn1 {
  width: 240px;
  height: 54px;
  background-color: #1D2D42;
  color: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.09em;
  line-height: 1.5;
}
.conversion1 .btn1 .ico1 {
  display: inline-block;
  padding-left: 35px;
  position: relative;
}
.conversion1 .btn1 .ico1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 0;
  margin: auto;
  width: 23px;
  height: 16px;
  background: url(../img/common/ico_mail1_w.svg)no-repeat center / contain;
}

@media all and (min-width: 681px) {
  body,
  .head {
    min-width: 1200px;
  }
  .conversion1 .btn1:hover {
    background-color: #206290;
  }
  .conversion1.type2 {
    width: 240px;
  }
}

@media all and (max-width: 680px) {
  .main {
    padding-top: 60px;
  }
  .head .inner {
    height: 60px;
    padding: 0 20px;
  }
  .head .siteID .logo {
    width: 118px;
  }
  .head .siteID .text {
    font-size: 13px;
    margin-left: 23px;
  }
  .conversion1 {
    width: 100%;
    height: 62px;
    top: auto;
    bottom: -100px;
    right: 0;
    transition: bottom 0.3s ease;
  }
  .conversion1 .tel1 {
    width: 100%;
    height: 100%;
    margin-top: 0;
    border: 2px solid #1D2D42;
    background-color: #fff;
    padding-top: 6px;
  }
  .conversion1 .tel1 img {
    max-width: 163px;
    margin: 0 auto;
    display: block;
  }
  .conversion1 .tel1 .t1 {
    font-size: 10px;
    letter-spacing: 0;
    padding-left: 10px;
    margin-top: 4px;
  }
  .conversion1 .btn1 {
    width: 100%;
    height: 100%;
    border-radius: 0;
    font-size: 16px;
    letter-spacing: 0.05em;
  }
  .pageScroll .conversion1 {
    bottom: 0;
  }
  .con_none .conversion1 {
    bottom: -100px;
  }
}

.mvWrap {
  width: 100%;
  height: 50.69vw;
  min-height: 727px;
  position: relative;
}

.mvWrap .inner {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding-bottom: 30px;
  position: relative;
  z-index: 5;
}

.mv_textBox1 {
  width: 686px;
}

.mv_text2 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 2.11;
  margin-top: 40px;
}

.mv_text3 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 2.11;
}

.mv_bnr1 {
  width: 508px;
  margin-top: 34px;
}

.imgBlock1 .img {
  position: absolute;
}

.imgBlock1 .img.type1 {
  background: url(../img/jobutsu_contact/mv_img1.jpg) no-repeat center/cover;
  top: 0;
  right: 0;
  z-index: 1;
  width: 615px;
  height: 467px;
}

.imgBlock1 .img.type2 {
  background: url(../img/jobutsu_contact/mv_img2.jpg) no-repeat center/cover;
  top: 430px;
  right: 370px;
  z-index: 3;
  width: 324px;
  height: 201px;
}

.imgBlock1 .img.type3 {
  background: url(../img/jobutsu_contact/mv_img3.jpg) no-repeat center/cover;
  top: 498px;
  right: 0;
  z-index: 2;
  width: 442px;
  height: 229px;
}

@media all and (min-width: 681px) {
  .mvWrap {
    background: url(../img/jobutsu_contact/mv_bg1.svg) no-repeat left top/cover;
  }
}

@media all and (max-width: 680px) {
  .mvWrap {
    width: 100%;
    height: auto;
    min-height: auto;
    background: url(../img/jobutsu_contact/mv_bg1_sp.svg) no-repeat center top/cover;
  }
  .mvWrap .inner {
    width: 100%;
    height: auto;
    display: block;
    padding: 25px 20px 0;
  }
  .mv_textBox1 {
    width: 100%;
    position: relative;
  }
  .mv_text2 {
    font-size: 14px;
    text-align: justify;
    letter-spacing: 0;
    line-height: 1.86;
    margin-top: 0;
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 200px;
  }
  .mv_text3 {
    font-size: 14px;
    text-align: justify;
    letter-spacing: 0;
    line-height: 1.86;
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 200px;
  }
  .mv_bnr1 {
    width: 100%;
    margin-top: 25px;
  }
  .imgBlock1_sp {
    background: url(../img/jobutsu_contact/mv_img4.jpg) no-repeat center/cover;
    width: 100vw;
    height: 39.47vw;
    position: relative;
    left: -20px;
    margin-top: 20px;
  }
}

.section1 {
  background-color: #EDF6FF;
  width: 100%;
  padding: 80px 0 160px;
}

.section1_block1 {
  width: 875px;
  margin: 0 auto;
}

.section1_h2_box {
  width: 100%;
  height: 100px;
  position: relative;
  color: #fff;
  background-color: #1D2D42;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.section1_h2 {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.07em;
  line-height: 1.5;
}

.section1_h2_box_toggle {
  height: 34px;
  display: inline-flex;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}

.section1_h2_box_toggle::before {
  content: "詳しく見る";
  padding-right: 10px;
  font-size: 16px;
}

.section1_h2_box_toggle::after {
  width: 34px;
  height: 34px;
  content: "";
  background: url(../img/jobutsu_contact/btn1.svg) no-repeat center/contain;
}

.toggle_on .section1_h2_box_toggle::before {
  content: "閉じる";
}

.toggle_on .section1_h2_box_toggle::after {
  background: url(../img/jobutsu_contact/close1.svg) no-repeat center/17px;
}

.section1_block1_in1 {
  display: none;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border: 2px solid #1D2D42;
  border-top: none;
  padding: 50px 45px;
}

.toggle_on .section1_block1_in1 {
  display: flex;
}

.section1_block1_textBox {
  width: 372px;
}

.section1_h3 {
  font-size: 22px;
  font-weight: 700;
  text-align: justify;
  letter-spacing: 0.05em;
  line-height: 1.82;
}

.section1_p1 {
  font-size: 15px;
  font-weight: 400;
  text-align: justify;
  letter-spacing: 0;
  line-height: 2.2;
  margin-top: 26px;
}

.section1_block1_imgBox {
  width: 364px;
}

@media all and (max-width: 680px) {
  .section1 {
    padding: 45px 20px 50px;
  }
  .section1_block1 {
    width: 100%;
  }
  .section1_h2_box {
    height: 56px;
  }
  .section1_h2 {
    font-size: 20px;
  }
  .section1_h2_box_toggle::before {
    content: "";
  }
  .toggle_on .section1_h2_box_toggle::before {
    content: "";
  }
  .section1_block1_in1 {
    padding: 22px 20px 26px;
  }
  .toggle_on .section1_block1_in1 {
    display: block;
  }
  .section1_block1_textBox {
    width: 100%;
  }
  .section1_h3 {
    font-size: 20px;
    letter-spacing: 0;
    line-height: 1.65;
  }
  .section1_p1 {
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.86;
    margin-top: 18px;
  }
  .section1_block1_imgBox {
    width: 100%;
    margin-top: 20px;
  }
}

.w_titleBox1 {
  width: 100%;
  height: 210px;
  position: relative;
  margin-bottom: 32px;
  color: #fff;
  background-color: #206290;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

.w_titleBox1::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 33px 42px 0 42px;
  border-color: #206190 transparent transparent transparent;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -32px;
  margin: auto;
}

.w_titleBox1_h2 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.5;
  border-bottom: 2px solid #fff;
  padding-bottom: 5px;
}

.w_titleBox1_p1 {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-top: 20px;
}

@media all and (max-width: 680px) {
  .w_titleBox1 {
    height: auto;
    margin-bottom: 22px;
    padding: 26px 0 32px;
  }
  .w_titleBox1::after {
    bottom: -22px;
  }
  .w_titleBox1_h2 {
    font-size: 22px;
    letter-spacing: 0.05em;
  }
  .w_titleBox1_p1 {
    font-size: 17px;
    letter-spacing: 0.05em;
    margin-top: 15px;
  }
}

.section2_block1 {
  width: 1100px;
  margin: 0 auto;
  padding: 64px 0;
}

.section2_block1 + .section2_block1 {
  border-top: 2px solid #D3D3D3;
}

.section2_titleBox {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

.section2_h2 {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.5;
  border-bottom: 2px solid #000;
  padding-bottom: 5px;
}

.section2_p1 {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-top: 24px;
}

.section2_ul1 {
  width: 1024px;
  margin: 45px auto 0;
  display: flex;
  justify-content: space-between;
}

.section2_ul1 .li1 {
  width: 326px;
  border-radius: 15px;
  background-color: #F2F6F6;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  padding: 24px;
}

.section2_ul1 .dl1 dt {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.07em;
  line-height: 1.5;
  color: #206290;
}

.section2_ul1 .dl1 dd {
  font-size: 15px;
  font-weight: 400;
  text-align: justify;
  letter-spacing: 0;
  line-height: 2;
  margin-top: 10px;
}
.section2_ul1 .dl1 dd .sml1 {
  font-size: 12px;
  line-height: 1.7;
  display: block;
}

.section2_ul2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 58px 55px;
  margin-top: 70px;
}
.section2_ul2 li {
  width: 445px;
}
.section2_ul2 li .list_textBox {
  margin-top: -67px;
}
.section2_ul2 li .list_icon {
  width: 92px;
  margin: 0 auto;
}
.section2_ul2 li .list_title {
  font-size: 22px;
  letter-spacing: 0.07em;
  font-weight: bold;
  color: #206290;
  text-align: center;
  margin-top: 10px;
}
.section2_ul2 li .list_text {
  font-size: 15px;
  letter-spacing: 0.07em;
  line-height: 2;
  text-align: justify;
  margin-top: 10px;
}
.section2_ul2 li .list_text .sml {
  display: block;
  font-size: 12px;
  line-height: 22px;
  margin-top: 15px;
}

.w_link1 {
  width: 478px;
  height: 100px;
  margin: 72px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1D2D42;
  color: #fff;
  border-radius: 35px;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.5;
  position: relative;
}

.w_link1::after {
  content: "";
  width: 12px;
  height: 24px;
  background: url(../img/jobutsu_contact/arrow1.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  transition: right 0.3s ease;
}

@media all and (min-width: 681px) {
  .w_link1:hover {
    background-color: #206290;
  }
  .w_link1:hover::after {
    right: 24px;
  }
}

@media all and (max-width: 680px) {
  .section2_block1 {
    width: calc(100% - 40px);
    padding: 42px 0;
  }
  .section2_h2 {
    font-size: 20px;
    letter-spacing: 0.05em;
  }
  .section2_p1 {
    font-size: 17px;
    letter-spacing: 0.05em;
    margin-top: 10px;
  }
  .section2_ul1 {
    width: 100%;
    margin-top: 35px;
    display: block;
  }
  .section2_ul1 .li1 {
    width: 100%;
    padding: 20px 26px 24px;
  }
  .section2_ul1 .li1:nth-of-type(1n + 2) {
    margin-top: 24px;
  }
  .section2_ul1 .dl1 dt {
    font-size: 22px;
  }
  .section2_ul1 .dl1 dd {
    font-size: 14px;
    margin-top: 14px;
  }

  .section2_ul2 {
    display: block;
    margin-top: 40px;
  }
  .section2_ul2 li {
    width: 100%;
  }
  .section2_ul2 li + li {
    margin-top: 30px;
  }
  .section2_ul2 li .list_textBox {
    margin-top: -38px;
  }
  .section2_ul2 li .list_icon {
    width: 76px;
  }
  .section2_ul2 li .list_title {
    margin-top: 10px;
  }
  .section2_ul2 li .list_text {
    font-size: 14px;
    line-height: 1.85;
    margin-top: 10px;
  }
  .section2_ul2 li .list_text .sml {
    font-size: 11px;
    line-height: 1.6;
    margin-top: 12px;
  }

  .w_link1 {
    width: 308px;
    height: 65px;
    margin-top: 40px;
    border-radius: 26px;
    font-size: 16px;
  }
  .w_link1::after {
    width: 7px;
    height: 14px;
    right: 18px;
  }
}

.section3 {
  padding-bottom: 76px;
}
.section3.type2 {
  padding-bottom: 0;
}

.section3_p1 {
  font-size: 26px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.62;
  padding-top: 45px;
}

.section3_flow {
  width: 846px;
  margin: 0 auto;
  padding: 46px 0 72px;
}

.w_telLink1 {
  width: 718px;
  height: 134px;
  margin: 0 auto;
  padding: 0 55px 0 40px;
  background-color: #fff;
  border: 6px solid #000;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.w_telLink1 .in1 {
  width: calc(100% - 325px);
}

.w_telLink1 .in1 .tit {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.w_telLink1 .in2 {
  padding-top: 14px;
  width: 325px;
}

.w_telLink1 .in2 .t1 {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

@media all and (max-width: 680px) {
  .section3 {
    padding-bottom: 46px;
  }
  .section3_p1 {
    font-size: 20px;
    letter-spacing: 0.05em;
    padding-top: 22px;
  }
  .section3_flow {
    width: 100%;
    padding: 28px 20px 40px;
  }
  .w_telLink1 {
    width: calc(100% - 40px);
    height: 106px;
    padding: 2px 0 0;
    border: 4px solid #000;
    border-radius: 0;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
  }
  .w_telLink1 .in1 {
    width: 100%;
  }
  .w_telLink1 .in1 .tit {
    font-size: 15px;
    text-align: center;
  }
  .w_telLink1 .in2 {
    padding-top: 5px;
    width: 100%;
  }
  .w_telLink1 .in2 img {
    width: 234px;
    margin: 0 auto;
  }
  .w_telLink1 .in2 .t1 {
    font-size: 12px;
    text-align: center;
    margin-top: 5px;
  }
}

.foot {
  padding: 56px 0 22px;
}

.foot .foot_logo {
  width: 300px;
  margin: 0 auto;
}

.foot .foot_address {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.075em;
  line-height: 1.67;
  margin-top: 42px;
}

.foot .cRight {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0;
  margin-top: 40px;
}

@media all and (max-width: 680px) {
  .foot {
    padding: 32px 0 14px;
  }
  .foot .foot_logo {
    width: 254px;
  }
  .foot .foot_address {
    font-size: 12px;
    margin-top: 38px;
  }
  .foot .cRight {
    font-size: 10px;
    margin-top: 30px;
  }
}

.formWrap {
  padding: 68px 0 88px;
  background-color: #F2F6F6;
}

.form_h2 .t1 {
  display: block;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.09em;
  line-height: 1.5;
}

.form_h2 .t2 {
  display: block;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.09em;
  line-height: 1.5;
  margin-top: 5px;
}

.formText1 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-decoration: underline;
  margin-top: 46px;
}

.mw_wp_form {
  padding-top: 114px;
  margin-top: -114px;
}

@media all and (max-width: 680px) {
  .formWrap {
    padding: 30px 0 50px;
  }
  .form_h2 .t1 {
    font-size: 20px;
  }
  .form_h2 .t2 {
    font-size: 15px;
  }
  .formText1 {
    font-size: 17px;
    margin-top: 26px;
  }
  .mw_wp_form {
    padding-top: 60px;
    margin-top: -60px;
  }
}

/* フォームパーツ */
input,
select,
textarea,
button {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea,
button,
input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
  padding: 10px 12px;
  background-color: #fff;
  border: 0;
  font-size: 16px;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="number"],
select {
  height: 50px;
}

select {
  width: 200px;
  height: 50px;
  color: #000;
}

select, .day1, .date1, .day2, .date2 {
  padding-right: 40px;
  background-image: url(../img/form/ico_selecttri01.svg);
  background-size: 13px 12px;
  background-position: center right 12px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.day1::placeholder, .date1::placeholder, .day2::placeholder, .date2::placeholder {
  color: #000;
}

textarea {
  width: 100%;
  height: 215px;
}

input[type="submit"],
button {
  cursor: pointer;
}

::-ms-expand {
  display: none;
}

.day1,
.date1,
.day2,
.date2 {
  width: 192px;
}

.adult,
.children {
  width: 127px;
}

.name1,
.name2,
.name3,
.name4 {
  width: 280px;
}

.name2,
.name4 {
  margin-left: 12px;
}

.name,
.mail,
.tel {
  width: 100%;
}

.address {
  width: 238px;
}

.pref,
.attr {
  width: 442px;
}

.contentsLabel {
  width: 130px;
}

.label1,
.label4 {
  margin-right: 12px;
}

.label2 {
  margin-left: 4px;
  margin-right: 12px;
}

.label6 {
  margin-left: 20px;
  margin-right: 12px;
}

.label3,
.label5,
.label7 {
  margin-left: 4px;
}

.mw_wp_form .error {
  width: 100%;
}

.formColumn.participants {
  padding-bottom: 30px;
  border-bottom: 1px solid #707070;
  margin-top: 40px;
  margin-bottom: 40px;
}

.formAttention {
  font-size: 12px;
  letter-spacing: 0;
  width: 100%;
}

.formAttentionItem {
  padding-left: 12px;
  position: relative;
}

.formAttentionItem:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.formContents {
  position: relative;
}

.mwform-radio-field {
  /* margin: 0.5rem; */
}

.mwform-radio-field input[type="radio"],
.mwform-checkbox-field input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 25px !important;
}

.mwform-radio-field input[type="radio"] + .mwform-radio-field-text:before,
.mwform-checkbox-field
input[type="checkbox"]
+ .mwform-checkbox-field-text:before {
  content: "";
  background: #ffffff;
  border-radius: 100%;
  border: 1px solid #b4b4b4;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
  margin-right: 6px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}

.mwform-checkbox-field
input[type="checkbox"]
+ .mwform-checkbox-field-text:before {
  border-radius: 0;
}

.mwform-radio-field
input[type="radio"]:checked
+ .mwform-radio-field-text:before,
.mwform-checkbox-field
input[type="checkbox"]:checked
+ .mwform-checkbox-field-text:before {
  background-color: #06162f;
  box-shadow: inset 0 0 0 4px #f4f4f4;
}

.mwform-radio-field input[type="radio"]:focus + .mwform-radio-field-text:before,
.mwform-checkbox-field
input[type="checkbox"]:focus
+ .mwform-checkbox-field-text:before {
  outline: none;
  border-color: #06162f;
}

.mwform-radio-field
input[type="radio"]:disabled
+ .mwform-radio-field-text:before,
.mwform-checkbox-field
input[type="checkbox"]:disabled
+ .mwform-checkbox-field-text:before {
  box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}

.mwform-radio-field input[type="radio"] + .mwform-radio-field-text:empty:before,
.mwform-checkbox-field
input[type="checkbox"]
+ .mwform-checkbox-field-text:empty:before {
  margin-right: 0;
}

/* /フォームパーツ　ここまで */
.formFlow {
  background-image: url(../../img/form/flow_01_pc.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.check .formFlow {
  background-image: url(../../img/form/flow_02_pc.svg);
}

.thanks .formFlow {
  background-image: url(../../img/form/flow_03_pc.svg);
}

.check .addressButton {
  display: none;
}

.check .contentsLabel {
  display: none;
}

.check .privacyText {
  display: none;
}

.check .contactText1 {
  display: none;
}

.thanks .formText {
  margin-top: 20px;
}

/* フォーム下説明文 */
.formDescription {
  color: #06162f;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  margin-top: 30px;
}

.formDescription.type02 {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid #06162f;
  text-align: center !important;
}

.thanks .formDescription {
  margin-top: 50px;
}

.formDescriptionTitle {
  font-size: 24px;
  text-align: center;
}

.formTel {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  margin-top: 20px;
}

.formTel span {
  padding-left: 50px;
  position: relative;
}

.formTel span:before {
  content: "";
  background-image: url(../../img/common/ico_tel01.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.formContact {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.formContact dl {
  display: flex;
  justify-content: center;
}

.formContact dt:after {
  content: "／";
}

/* /フォーム下説明文　ここまで */
/* form */
.formTable {
  font-weight: 500;
  margin-top: 40px;
}

.formTitle {
  font-size: 16px;
  letter-spacing: 0;
  padding-right: 54px;
  position: relative;
}

.formTitle .sml1 {
  font-size: 12px;
  display: block;
}

.titleLabel {
  color: #fff;
  background-color: #575757;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.1em;
  width: 36px;
  height: 24px;
  position: absolute;
  top: 1px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* イベントの情報 */
.eventInformation {
  width: 100%;
  padding: 15px 20px;
  background-color: #fff;
  border: 1px solid #000;
  color: #6e7175;
}

.informationDate {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.666;
  letter-spacing: 0;
  display: flex;
}

.dateTitle {
  width: 95px;
  padding-right: 17px;
  text-align-last: justify;
  text-justify: inter-ideograph;
  position: relative;
}

.dateTitle:after {
  content: "：";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.dataText {
  width: calc(100% - 95px);
}

/* /イベントの情報　ここまで */
.privacyText {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-top: 40px;
}

.privacyText a {
  color: #06162f;
  text-decoration: underline;
}

.contactText1 {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  margin-top: 40px;
}

.addressButton {
  padding-left: 0;
  padding-right: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  width: 190px;
  height: 50px;
  cursor: pointer;
  margin-left: 14px;
}

.formButtonList {
  margin-top: 35px;
}

.contactBanner + .sectionInner {
  margin-top: 40px;
}

.property_reservationBanner + .sectionInner {
  margin-top: 40px;
}

@media all and (min-width: 681px) {
  .formFlow {
    width: 800px;
    height: 50px;
  }
  .formContact dl {
    margin-left: 10px;
  }
  .formContact dl:first-child {
    margin-left: 0;
  }
  /* form */
  .formColumn {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    margin-top: 25px;
  }
  .formColumn.mt0 {
    margin-top: 0;
  }
  .formColumn.alignCenter .titleLabel {
    top: 12px;
    margin: auto;
  }
  .formColumn:first-child {
    margin-top: 0;
  }
  .formTitle {
    display: flex;
    flex-flow: column;
    width: 250px;
  }
  .formContents {
    width: 572px;
    display: flex;
    flex-wrap: wrap;
    margin-left: 12px;
  }
  .formContents.radioForm {
    display: block;
  }
  .formColumn.alignCenter .formTitle {
    padding-top: 10px;
  }
  .formColumn.alignCenter .formContents {
    align-items: center;
  }
  .formAttention {
    width: 619px;
    margin-top: 20px;
  }
  .privacyText a {
    transition: 0.3s ease;
  }
  .privacyText a:hover {
    text-decoration: none;
  }
  .formButtonList button,
  .formButtonList input {
    width: 580px;
    height: 100px;
    border: none;
    transition: 0.3s ease;
  }
  .mw_wp_form .formTable .vertical-item {
    margin-right: 24px;
    margin-top: 10px;
  }
  .mw_wp_form .formTable .aboutType2 .vertical-item {
    width: 100%;
  }
  .mw_wp_form .formTable .vertical-item + .vertical-item {
    margin-top: 10px;
  }
  .check .formColumn.alignCenter .formContents {
    padding-top: 10px;
  }
  .check .formColumn.address02,
  .check .formColumn.address03 {
    margin-top: 0px;
  }
  .check .formButtonList {
    margin-top: 60px;
  }
  .contactBanner {
    margin-left: auto;
    margin-right: auto;
  }
  .contactBanner a {
    transition: 0.3s ease;
  }
  .contactBanner a:hover {
    opacity: 0.8;
  }
  .contactBanner,
  .contactBanner__image,
  .contactBanner img {
    width: 833px;
  }
  .property_reservationBanner {
    margin-left: auto;
    margin-right: auto;
  }
  .property_reservationBanner a {
    transition: 0.3s ease;
  }
  .property_reservationBanner a:hover {
    opacity: 0.8;
  }
  .property_reservationBanner,
  .property_reservationBanner__image,
  .property_reservationBanner img {
    width: 800px;
  }
}

@media all and (max-width: 680px) {
  input[type="text"],
  input[type="email"],
  input[type="number"],
  select,
  textarea {
    padding: 10px 5px;
  }
  .property_reservation .icatchWrap.typeD {
    margin-top: 20px;
  }
  .formFlow {
    background-image: url(../../img/form/flow_01_sp.svg);
    height: 9.6875vw;
    margin-left: 15px;
    margin-right: 15px;
  }
  .check .formFlow {
    background-image: url(../../img/form/flow_02_sp.svg);
  }
  .thanks .formFlow {
    background-image: url(../../img/form/flow_03_sp.svg);
  }
  .formDescription {
    font-size: 15px;
    margin-top: 20px;
  }
  .thanks .formDescription {
    padding: 0 5%;
    text-align: justify;
    text-justify: inter-ideograph;
    margin-top: 25px;
  }
  .formDescriptionTitle {
    font-size: 18px;
  }
  .formTel {
    font-size: 30px;
    margin-top: 10px;
  }
  .formTel span {
    padding-left: 40px;
  }
  .formTel span:before {
    width: 32px;
    height: 32px;
  }
  .formContact {
    margin-top: 10px;
  }
  .formContact dl {
    width: 100%;
  }
  .formTitle {
    padding-right: 0;
    text-align: left;
  }
  .infomationTitle {
    line-height: 1.625;
  }
  .informationDate {
    font-size: 14px;
    line-height: 1.571;
  }
  .formTable {
    margin-top: 30px;
  }
  .dateTitle {
    width: 80px;
    padding-right: 17px;
    text-align-last: justify;
    text-justify: inter-ideograph;
    position: relative;
  }
  .dataText {
    width: calc(100% - 80px);
  }
  .formTitle {
    width: 100%;
    min-height: 30px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
  }
  .formTitle .sml1 {
    margin-left: 10px;
  }
  .formContents {
    margin-top: 12px;
  }
  .titleLabel {
    font-size: 10px;
    padding-top: 0;
    position: static;
    width: 35px;
    height: 20px;
    margin-left: 10px;
  }
  .formColumn {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .formColumn.mt0 {
    margin-top: 0;
  }
  .formContents.mt5 {
    margin-top: 5px;
  }
  .formContents.radioForm {
    display: flex;
    flex-wrap: wrap;
  }
  .mwform-checkbox-field,
  .mwform-radio-field {
    width: 100%;
    letter-spacing: 0;
  }
  .mw_wp_form .vertical-item + .vertical-item {
    /* margin-top: 0 !important; */
  }
  .mw_wp_form .formTable .mwform-radio-field {
    /* margin-top: 7px !important; */
  }
  .mw_wp_form .formTable .mwform-radio-field:first-child,
  .mw_wp_form .formTable .mwform-radio-field:nth-child(2) {
    /* margin-top: 0 !important; */
  }
  .column1 {
    padding-left: 0;
    padding-right: 0;
  }
  .formColumn.participants {
    margin-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .column1 .formTitle {
    padding-left: 20px;
    min-height: auto;
  }
  .column1 .formContents {
    font-size: 14px;
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 20px;
  }
  .formColumn:first-child {
    margin-top: 0;
  }
  .formColumn.column3 .formTitle {
    display: none;
  }
  .formAttention {
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 20px;
  }
  .spLabelChange .formTitle {
    padding-left: 0;
  }
  .label1 {
    padding-left: 53px;
    display: block;
    margin-bottom: 7px;
  }
  .day1,
  .date1,
  .day2,
  .date2 {
    width: 100%;
  }
  .adult,
  .children {
    width: 20%;
  }
  .label1,
  .label4 {
    margin-right: 4px;
  }
  .label2 {
    margin-left: 0;
    margin-right: 4px;
  }
  .label6 {
    margin-left: 7px;
    margin-right: 4px;
  }
  .label3,
  .label5,
  .label7 {
    margin-left: 0;
  }
  .name1,
  .name2,
  .name3,
  .name4 {
    width: 47.5%;
    display: inline-block;
  }
  .name2,
  .name4 {
    margin-left: 3%;
  }
  .contentsLabel {
    letter-spacing: 0;
    line-height: 1.2;
    width: 25vw;
    display: flex;
    align-items: center;
  }
  .address {
    width: 33vw;
  }
  .pref,
  .attr {
    width: 64vw;
  }
  .addressButton {
    font-size: 14px;
    text-align: center;
    line-height: 1.4;
    padding: 0 2px 0 0px;
    width: 29.75vw;
    margin-left: 5px;
  }
  .formColumn.spNarrow {
    margin-top: 5px;
  }
  .spNarrow .formContents {
    margin-top: 0;
  }
  .spFlex {
    display: flex;
    align-items: center;
  }
  textarea {
    height: 155px;
  }
  .privacyText,
  .contactText1 {
    font-size: 15px;
    letter-spacing: 0;
    margin-left: 20px;
    margin-right: 20px;
  }
  .formButtonList {
    margin-top: 20px;
  }
  .check .formButtonList {
    margin-top: 50px;
  }
  .formButtonList button,
  .formButtonList input {
    font-size: 18px;
    font-weight: 500;
    width: 280px;
    height: 70px;
    border: none;
  }
  .check .formButtonList button,
  .check .formButtonList input {
    height: 70px;
  }
  .contactBanner {
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
  }
  .property_reservationBanner {
    text-align: center;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
  }
  .property_reservationBanner__image img {
    width: 100%;
    height: auto;
  }
}

@media all and (max-width: 370px) {
  .contentsLabel {
    width: 71px;
  }
  .address {
    width: 122px;
  }
  .pref,
  .attr {
    width: 209px;
  }
  .addressButton {
    font-size: 12px;
    padding: 0 2px 0 0px;
    width: 82px;
    margin-left: 5px;
  }
}

.dataBox1 {
  padding: 15px;
  border: 1px solid #06162F;
  width: 100%;
}

.dataBox1 .category {
  display: inline-block;
  min-width: 250px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background-color: #06162F;
  letter-spacing: 0;
  padding: 8px;
}

.dataBox1 .date {
  font-size: 18px;
  font-weight: 500;
  color: #06162F;
  letter-spacing: 0;
  border-bottom: 1px solid #707070;
  padding: 10px 0 5px;
}

.dataBox1 .title {
  font-size: 20px;
  color: #06162F;
  letter-spacing: 0;
  padding: 5px 0 0;
}

.dataList {
  padding-top: 10px;
  color: #06162F;
}

.dataList > li {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  font-size: 16px;
  letter-spacing: 0;
}

.dataList > li:nth-of-type(1n + 2) {
  margin-top: 5px;
}

.dataList .data_tit1 {
  width: 95px;
  text-align-last: justify;
  text-justify: inter-ideograph;
  padding-right: 30px;
  position: relative;
}

.dataList .data_tit1::after {
  content: " | ";
  position: absolute;
  top: 0;
  right: 11px;
}

.dataList .data_txt1 {
  width: calc(100% - 95px);
}

.dataList .data_li2 .data_txt1 {
  font-size: 20px;
  font-weight: 500;
}

.dataList .data_li2 .data_txt1 .yen {
  font-size: 16px;
}

.dataBox1 .w_btn01 {
  width: 100%;
  height: 60px;
  font-size: 16px;
}

@media all and (min-width: 681px) {
  .formColumn.column4 .formContents {
    position: relative;
    left: -56px;
  }
  .formColumn.column4 + .column2 {
    margin-top: 60px;
  }
}

@media all and (max-width: 680px) {
  .formColumn.column4 {
    padding-left: 0;
    padding-right: 0;
  }
  .formColumn.column4 .formTitle {
    padding-left: 20px;
  }
  .dataBox1 {
    width: 100%;
    background-color: #fff;
    padding: 20px 25px 20px 25px;
    border: 0;
  }
  .dataBox1 .in1 {
    /* background-color: #fff; */
    /* padding: 15px; */
  }
  .dataBox1 .category {
    width: 100%;
    min-width: auto;
    height: 33px;
    font-size: 14px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .dataBox1 .date {
    padding: 10px 0 10px 0;
    font-size: 14px;
  }
  .dataBox1 .title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    padding-top: 7px;
  }
  .dataList {
    padding-bottom: 0;
  }
  .dataList > li {
    flex-flow: nowrap;
    align-items: stretch;
    font-size: 14px;
  }
  .dataList > li:nth-of-type(1n + 2) {
    margin-top: 2px;
  }
  .dataList .data_tit1 {
    width: 68px;
    padding: 5px;
    margin-right: 2px;
    background-color: #F4F4F4;
  }
  .dataList .data_tit1::after {
    display: none;
  }
  .dataList .data_txt1 {
    width: calc(100% - 70px);
    background-color: #F4F4F4;
    padding: 5px;
  }
  .dataList .data_li2 .data_txt1 {
    line-height: 1.1;
  }
  .dataBox1 .w_btn01 {
    width: 250px;
    height: 50px;
    font-size: 14px;
    margin-top: 15px;
  }
}

.formTelButton a {
  display: block;
}

@media all and (max-width: 680px) {
  .formTelButton {
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
  }
  .formTelButton a {
    padding: 15px 20px;
    background-color: #fff;
    color: #06162f;
    border: 1px solid #06162f;
  }
  .formTelButton .formTel span:before {
    background-image: url(../../img/common/ico_tel01.svg);
  }
}

/* lineBlock */
.lineBlock {
  width: 800px;
  height: 1px;
  background-color: #787878;
  margin: 60px auto;
}

@media all and (max-width: 680px) {
  .lineBlock {
    width: auto;
    margin: 35px 20px;
  }
}

/* birth1 */
.birth1 {
  width: 150px;
}

.birth1.type2 {
  width: 100px;
}

.birth_text {
  padding: 0 20px 0 10px;
}

.check .birth1 {
  width: auto !important;
}

.check .birth_text {
  padding: 0 !important;
}

.mw-wp-form_file a {
  pointer-events: none;
}

@media all and (max-width: 680px) {
  .formContents.type2 {
    display: flex;
    align-items: center;
  }
  .birth1 {
    width: 100px;
  }
  .birth1.type2 {
    width: 50px;
  }
  .birth_text {
    padding: 0 15px 0 5px;
  }
}

/* fileInput */
.formContents.type3 {
  display: block;
}

.fileInput {
  padding: 15px 0;
}

.fileText {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}

.fileText2 {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
}

/* select */
.kara {
  padding: 0 10px;
}

@media all and (max-width: 680px) {
  .formContents.spflex {
    display: flex;
    align-items: center;
  }
  .formContents.spflex .day1 {
    width: 38vw;
  }
}

/* other */
.about_other {
  width: 469px;
  display: inline-block;
  margin-top: 10px;
}

.textarea_text1 {
  font-size: 14px;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.formButtonList button.returnButton,
.formButtonList input.returnButton {
  margin-top: 40px;
  background-color: #999;
  width: 350px;
  height: 70px;
}

@media all and (max-width: 680px) {
  .about_other {
    width: 100%;
  }
  .formButtonList button.returnButton,
  .formButtonList input.returnButton {
    margin-top: 25px;
    width: 200px;
    height: 45px;
    font-size: 14px;
  }
}
