@charset "UTF-8";

/*---------------------------------------------

	全ページ共通

---------------------------------------------*/
/* ↓ 色とテキストの定義 ------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media screen and (min-width: 1200px) {
  html {
    font-size: 17px;
  }
}

@media screen and (min-width: 1400px) {
  html {
    font-size: 18px;
  }
}

@media screen and (max-width: 540px) {
  html {
    font-size: 3.3vw;
    /*文字量L-3.3vw/文字量M-3.5vw  */
  }
}

body {
  color: #333333;
  letter-spacing: 0.1rem;
  line-height: 1.7;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 400;
  /*bold700 Medium 500 regular400 light 300*/
  position: relative;
  background: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}

/* ↓ 共通アニメーション------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ↓ 共通コンテンツ横幅とマージン ------------------------*/
/*pcの横幅*/
.pcWidth-xl {
  max-width: 1400px;
  width: 85%;
  margin: 0 auto;
}

.pcWidth-l {
  max-width: 1200px;
  width: 85%;
  margin: 0 auto;
}

.pcWidth-m {
  max-width: 960px;
  width: 85%;
  margin: 0 auto;
}

.pcWidth-s {
  max-width: 760px;
  width: 85%;
  margin: 0 auto;
}

@media screen and (min-width: 1450px) {
  .pcWidth-xl {
    max-width: 1600px;
  }

  .pcWidth-l {
    max-width: 1400px;
  }

  .pcWidth-m {
    max-width: 1100px;
  }

  .pcWidth-s {
    max-width: 960px;
  }
}

/*セクションの上下のマージン*/
.secOuter-s {
  padding: 4rem 0px 5rem 0px;
}

.secOuter-m {
  padding: 5rem 0px 6.5rem 0px;
}

.secOuter-l {
  padding: 7rem 0px 8rem 0px;
}

@media screen and (max-width: 540px) {
  .secOuter-s {
    padding: 3rem 0px 4.2rem 0px;
  }

  .secOuter-m {
    padding: 3.5rem 0px 4.8rem 0px;
  }

  .secOuter-l {
    padding: 4.2rem 0px 4.8rem 0px;
  }
}

/* ↓ リンクと共通パーツ ------------------------*/
.textalign-center {
  text-align: center;
}

.textalign-left {
  text-align: left;
}

.textalign-right {
  text-align: right;
}

a {
  color: #333333;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
}

.sechead {
  font-size: 5rem;
  letter-spacing: 0.2rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  color: #fdab1e;
  margin-bottom: 5vw;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.sechead .jpn {
  font-size: 1.2rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

.sechead_s {
  padding-left: 1rem;
  border-left: 8px solid #ff7702;
  font-weight: bold;
  font-size: 1.5rem;
}

.pagehead {
  text-align: left;
}

.sec_padding {
  padding: 6rem 0 8rem;
}

.sec_beige {
  background-color: #fbf9f5;
}
@media screen and (max-width: 540px) {
  .sechead {
    font-size: 3.2rem;
    margin-bottom: 3rem;
  }
  .sechead .jpn {
    font-size: 1rem;
    color: #333;
  }
  .sec_padding {
    padding: 5rem 0 6rem;
  }
}

/* ↓ ナビゲーションバー ------------------------*/
.globalmenu {
  padding: 1rem 2rem;
  line-height: normal;
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  justify-content: space-between;
  z-index: 1000;
  background: #fff;
  box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.5s ease;
}
.bgTopmost {
  background: none;
  box-shadow: none;
  transition: all 0.5s ease;
}
@media screen and (max-width: 540px) {
  .globalmenu {
    padding: 0.1rem 0.5rem 0.1rem 1rem;
  }
}

.globalmenu-left {
  width: 12rem;
}
@media screen and (max-width: 540px) {
  .globalmenu-left {
    width: 10rem;
  }
}
.globalmenu-right ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.globalmenu-right ul li {
  text-align: center;
  font-weight: bold;
  margin-left: 2rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.globalmenu-right ul li .jpn {
  text-align: center;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.globalmenu-right ul li a:hover {
  color: #ff7802;
  opacity: 1;
}

@media screen and (max-width: 540px) {
  .globalmenu-right ul {
    display: none;
  }
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: none;
}

@media screen and (max-width: 540px) {
  .hamburger {
    display: block;
    position: relative;
    z-index: 1000;
    right: 0;
    top: 0;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
    transform: scale(0.8, 0.8);
    transform: scale(0.6, 0.6);
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background: #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin: 0.5rem;
}

.hamburger span:nth-child(1) {
  top: 5px;
}

.hamburger span:nth-child(2) {
  top: 15px;
}

.hamburger span:nth-child(3) {
  top: 25px;
}

.hamburger.active span:nth-child(1) {
  top: 16px;
  /*    left: 6px;*/
  background: #333;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background: #333;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ↓ スマホメニュー ------------------------*/
nav.globalmenu-sp {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  width: 100%;
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  height: 100vh;
}

.globalmenuSp-inner {
  height: 100%;
  color: #333;
  text-align: left;
  margin-left: 6rem;
  margin-top: 6rem;
}

@media screen and (max-width: 540px) {
  .globalmenuSp-inner {
    margin-left: 5rem;
    margin-top: 8rem;
  }
}

nav.globalmenu-sp.active {
  display: block;
  opacity: 10;
}
.globalmenuSp-inner ul li {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
}
.globalmenuSp-inner ul li .jpn {
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.05rem;
}
/*---------------------------------------------

	テストコード

---------------------------------------------*/
/* ↓ セクション ｜ ファーストビュー ------------------------*/

.fv {
  height: 90vh;
  position: relative;
}
@media screen and (max-width: 540px) {
  .fv {
    height: 50vh;
  }
}

.img_town {
  width: 62vw;
  height: 100%;
  margin-left: auto;
  margin-right: 0;
}

@media screen and (max-width: 540px) {
  .img_town {
    width: 100vw;
  }
}

.img_town img {
  height: 100%;
  object-fit: cover;
}

.fv .catch {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 65vw;
  height: 10vw;
  max-height: 10rem;
}
@media screen and (max-width: 540px) {
  .fv .catch {
    width: 80vw;
    top: 45%;
    height: 14vw;
    transform: scale(1.1);
  }
}

.fv .catch img {
  position: absolute;
  top: 50%;
  left: 0;
  padding: 0 15vw 0 10vw;
  transform: translateY(-50%);
  height: 10vw;
  max-height: 6rem;

  max-width: 100%;
}

.fv .catch::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgb(255, 116, 1);
  background: linear-gradient(
    135deg,
    rgba(255, 116, 1, 1) 0%,
    rgba(255, 165, 1, 1) 100%
  );
  transform: scaleY(1.3) perspective(5rem) rotateX(4deg);
  transform-origin: bottom left;
  height: 10vw;
  max-height: 10rem;
}
@media screen and (max-width: 540px) {
  .fv .catch::before {
    height: 14vw;
  }
  .fv .catch img {
    top: 45%;
  }
}
/*---------------------------------------------

	message

---------------------------------------------*/

.message .flex {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10vw;
  position: relative;
}
.message .flex .box {
  width: 75%;
  height: 11vw;
  top: 22vw;
  right: 0;
  position: absolute;
  z-index: 0;
  background: rgb(255, 116, 1);
  background: linear-gradient(
    135deg,
    rgba(255, 116, 1, 1) 0%,
    rgba(255, 165, 1, 1) 100%
  );
}
@media screen and (max-width: 540px) {
  .message .flex .box {
    width: 70%;
    height: 10rem;
    margin: auto;
    top: initial;
    bottom: 7.5rem;
    right: initial;
    position: absolute;
    z-index: 0;
  }
}
.message .contents .inner {
  padding: 4vw 3.5vw;
  background-color: #fff;
  width: 44vw;
  position: relative;
  z-index: 2;
  left: 10vw;
}
@media screen and (max-width: 540px) {
  .message .contents .inner {
    padding: 4rem 3rem;
    width: 85%;
    margin: auto;
    left: initial;
  }
}
.message .img_message {
  width: 38vw;
  margin-left: -5vw;
  z-index: 1;
  position: absolute;
  bottom: -13vw;
  left: 50vw;
}
@media screen and (max-width: 540px) {
  .message .img_message {
    width: 60%;
    margin-left: initial;
    z-index: 1;
    position: relative;
    bottom: -2rem;
    left: initial;
    margin-left: auto;
    margin-right: 0;
  }
}
.message .contents .kado {
  position: absolute;
}

.message .contents .kado1 {
  top: 0;
  left: 0;
  width: 3rem;
}
.message .contents .kado2 {
  bottom: 0;
  right: 0;
  width: 3rem;
}

.message .contents .read {
  font-size: 1.8vw;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.message .contents .sentence {
  line-height: 2;
  font-size: 1.24vw;
  letter-spacing: 0.15rem;
}
@media screen and (max-width: 540px) {
  .message .contents .read {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }
  .message .contents .sentence {
    line-height: 2;
    font-size: 1rem;
  }
}
.message .contents .illust_town {
  width: 22vw;
  margin-left: -9vw;
  z-index: 1;
  position: absolute;
  top: 3vw;
  left: 64vw;
}
@media screen and (max-width: 540px) {
  .message .contents .illust_town {
    width: 12rem;
    margin-left: initial;
    top: initial;
    bottom: 1rem;
    left: 0rem;
    z-index: 0;
  }
}
/*---------------------------------------------

	business

---------------------------------------------*/

.business_sec .head_s {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}
.business_sec .head_s img {
  width: 3.3rem;
  margin-right: 0.75rem;
}
.business_sec .head_s p {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 540px) {
  .business_sec .head_s {
    margin-bottom: 2rem;
  }
  .business_sec .head_s img {
    width: 2.5rem;
    margin-right: 0.75rem;
  }
  .business_sec .head_s p {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
  }
}
.business_sec .item_flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7rem;
}
@media screen and (max-width: 540px) {
  .business_sec .item_flex {
    display: block;
    margin-bottom: 5rem;
  }
}
.business_sec .item_flex:last-child {
  margin-bottom: 0;
}

.business_sec .item_flex.reverse {
  flex-direction: row-reverse;
}

.business_sec .item_flex .left {
  width: 45%;
}

.business_sec .item_flex .right {
  width: 45%;
}
@media screen and (max-width: 540px) {
  .business_sec .item_flex .left {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .business_sec .item_flex .right {
    width: 100%;
  }
}

.business_sec .item_flex .right small {
  font-size: 0.75rem;
  letter-spacing: 0;
  line-height: 1.7;
  display: block;
  margin-top: 1rem;
}
.business_sec .item_flex .left .head_ss {
  font-size: 1.35rem;
  font-weight: bold;
  border-left: 5px solid #ff7802;
  padding-left: 0.75rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 540px) {
  .business_sec .item_flex .left .head_ss {
    margin-bottom: 1rem;
  }
}
.business_sec .item_flex .left .sentence {
  line-height: 2.2;
  font-size: 1.1rem;
  letter-spacing: 0.15rem;
}

/*---------------------------------------------

	VOICE

---------------------------------------------*/
.voice_flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 540px) {
  .voice_flex {
    display: block;
  }
}
.voice_item {
  width: 31.5%;
  background-color: #fbf9f5;
  padding: 3rem 2.5rem;
  position: relative;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 20px 2px rgba(100, 100, 100, 0.15);
}
@media screen and (max-width: 540px) {
  .voice_item {
    width: 100%;
    margin-bottom: 3rem;
  }
  .voice_item:last-child {
    margin-bottom: 0;
  }
}
.voice_item .number {
  position: absolute;
  padding: 0.5rem;
  top: -0.5rem;
  left: -1rem;
  padding: 0.4rem 1.75rem;
  background-color: #ffa202;
  color: #fff;
  letter-spacing: 0.1rem;
  font-weight: 400;
  font-size: 0.9rem;
}
@media screen and (max-width: 540px) {
  .voice_item .number {
    top: -1rem;
  }
}
.voice_item .name {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.voice_item .read {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.sec_case .case_item {
  margin-bottom: 7rem;
}
@media screen and (max-width: 960px) {
  .sec_case .case_item {
    margin-bottom: 5rem;
  }
}
.sec_case .case_item:last-child {
  margin-bottom: 0rem;
}

.sec_case .flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}
@media screen and (max-width: 960px) {
  .sec_case .flex {
    display: block;
    margin-bottom: 0rem;
  }
}
.sec_case .flex .left {
  width: 40%;
  font-weight: 500;
}
.sec_case .flex .right {
  width: 55%;
}
@media screen and (max-width: 960px) {
  .sec_case .flex .left {
    width: 100%;
  }
  .sec_case .flex .right {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.sec_case .flex .head_ss {
  background-color: #ff7702;
  display: inline-block;
  padding: 0.25rem 2rem;
  border-radius: 1.5rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  font-size: 1.1rem;
}
@media screen and (max-width: 960px) {
  .sec_case .flex .head_ss {
    margin-bottom: 1rem;
    margin-top: 1.5rem;
  }
}
.sec_case .flex .head_ss img {
  width: 1rem;
  margin-right: 0.5rem;
}
.sec_case .flex .head_ss .inner {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #fff;
}

.sec_case .comment {
  display: flex;
  justify-content: space-between;
}

.sec_case .comment .left {
  text-align: center;
  width: 17%;
  max-width: 10rem;
}
@media screen and (max-width: 960px) {
  .sec_case .comment .left {
    width: 20%;
  }
}
.sec_case .comment .left img {
  margin-bottom: 0.5rem;
}

.sec_case .comment .right {
  width: 75%;
  background-color: #fff;
  padding: 1.5rem 3rem;
  line-height: 2.2;
  box-shadow: -1rem 0 4.5rem 0px rgba(255, 119, 2, 0.15);
  position: relative;
  font-weight: 500;
}

@media screen and (max-width: 960px) {
  .sec_case .comment .right {
    width: 70%;
    background-color: #fff;
    padding: 1rem 1.5rem;
    line-height: 2;
    box-shadow: -1rem 0 4.5rem 0px rgba(255, 119, 2, 0.15);
    position: relative;
    font-weight: 500;
    font-size: 0.9rem;
  }
}
.sec_case .comment .right .fukidashi {
  left: 0;
  top: 3rem;
  transform: translateX(-100%);
  position: absolute;
  width: 2rem;
}
@media screen and (max-width: 960px) {
  .sec_case .comment .right .fukidashi {
    width: 1.3rem;
    top: 1.5rem;
  }
}
.sec_case .img_case2 .head_ss {
  background-color: #ff7702;
  display: inline-block;
  padding: 0.25rem 2rem;
  border-radius: 1.5rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  font-size: 1.1rem;
}
.sec_case .img_case2 .head_ss img {
  width: 1rem;
  margin-right: 0.5rem;
}
.sec_case .img_case2 .head_ss .inner {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #fff;
}

.sec_case .img_case2 {
  position: relative;
  margin-bottom: 3rem;
}
.sec_case .img_case2 .head_ss {
  position: absolute;
  left: 0;
  top: 0;
  margin: initial;
}
@media screen and (max-width: 1100px) {
  .sec_case .img_case2 .head_ss {
    display: none;
  }
}

.sec_case .case_head_ss {
  background-color: #ff7702;
  display: inline-block;
  padding: 0.25rem 2rem;
  border-radius: 1.5rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  font-size: 1.1rem;
}
.sec_case .case_head_ss img {
  width: 1rem;
  margin-right: 0.5rem;
}
.sec_case .case_head_ss .inner {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #fff;
}

@media screen and (min-width: 1101px) {
  .sec_case .case_head_ss {
    display: none;
  }
}
/*---------------------------------------------

問い合わせ

---------------------------------------------*/

.contact_list {
  margin-top: 5rem;
}
@media screen and (max-width: 540px) {
  .contact_list {
    margin-top: 2rem;
  }
}
.contact_list ul li {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
}

.contact_list ul li .head_s {
  width: 25%;
}

.contact_list ul li .form {
  width: 75%;
}

@media screen and (max-width: 540px) {
  .contact_list ul li {
    display: block;
    margin-bottom: 2rem;
  }

  .contact_list ul li .head_s {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .contact_list ul li .form {
    width: 100%;
  }
}

.contact_list ul label {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  margin-right: 1rem;
  white-space: nowrap;
}

@media screen and (max-width: 540px) {
  .contact_list label {
    margin-bottom: 0.5rem;
    display: inline-block;
  }
}

.contact_list ul label::before,
.contact_list ul label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.contact_list ul label::before {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  left: 5px;
}

.contact_list ul label::after {
  background-color: #ddd;
  border-radius: 50%;
  opacity: 0;
  width: 16px;
  height: 16px;
  left: 7px;
}

.visually-hidden {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

.input_form {
  width: 100%;
  padding: 1rem 1rem;
  border-radius: 0.5rem;
  border: none;
  box-shadow: 0 0 0 2px #cfcfcf inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.input_form:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}

.contact_list ul .textarea_row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
}
.contact_list ul .textarea_row:last-child {
  margin-bottom: 5rem;
}

.contact_list ul .textarea_row .head_s {
  padding-top: 1rem;
}

@media screen and (max-width: 540px) {
  .contact_list ul .textarea_row {
    display: block;
    align-items: flex-start;
  }

  .contact_list ul .textarea_row .head_s {
    padding-top: 1rem;
  }
}

textarea {
  width: 100%;
  padding: 1rem 1rem;
  border-radius: 0.5rem;
  border: none;
  box-shadow: 0 0 0 2px #cfcfcf inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

textarea:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}

.policytext {
  text-align: center;
  margin-bottom: 1rem;
}

.policytext a {
  color: #00c17c;
  text-decoration: underline;
}

.kiyaku_check {
  text-align: center;
  margin-bottom: 2.5rem;
}

.submitbutton {
  padding: 2rem 9rem;
  display: inline-block;
  color: #fff;
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 1.1rem;
  transition: 0.3s;
  background: rgb(255, 116, 1);
  background: linear-gradient(
    135deg,
    rgba(255, 116, 1, 1) 0%,
    rgba(255, 165, 1, 1) 100%
  );
  border: 1px solid rgba(255, 165, 1, 1);
}
@media screen and (max-width: 540px) {
  .submitbutton {
    padding: 2rem 7rem;
    display: inline-block;
    color: #fff;
    position: relative;
    z-index: 1;
    display: inline-block;
    font-size: 1.1rem;
    transition: 0.3s;
    background: rgb(255, 116, 1);
    background: linear-gradient(
      135deg,
      rgba(255, 116, 1, 1) 0%,
      rgba(255, 165, 1, 1) 100%
    );
    border: 1px solid rgba(255, 165, 1, 1);
  }
}
.submitbutton::before,
.submitbutton::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.submitbutton:hover {
  transform: scale(1.05);
  transition: 0.3s ease;
}

.submitbutton:hover::before {
  transform: scale(0);
  opacity: 0;
}

.validation {
  color: red;
}

.contact_buttonArea {
  text-align: center;
  margin: auto;
  justify-content: center;
}
.radio {
  width: 75%;
}

/*---------------------------------------------

	フッター

---------------------------------------------*/
.cv_area {
  padding: 7rem 0;
  background-image: url(../img/fv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.cv_area a {
  padding: 3.5rem 0;
  width: 85%;
  max-width: 760px;
  font-size: 1.5rem;
  font-weight: bold;
  margin: auto;
  text-align: center;
  color: #fff;
  display: block;
  background: rgb(255, 116, 1);
  background: linear-gradient(
    135deg,
    rgba(255, 116, 1, 1) 0%,
    rgba(255, 165, 1, 1) 100%
  );
  letter-spacing: 0.2rem;
  border-radius: 1rem;
  position: relative;
  transition: 0.3s ease;
}
@media screen and (max-width: 540px) {
  .cv_area a {
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
    line-height: 1;
  }
}
.cv_area a span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  width: 1rem;
}

.cv_area a:hover {
  transition: 0.3s ease;
  opacity: 1;
  transform: scale(1.03);
}
.footer-menu {
  background: #000000;
  text-align: center;
  padding: 7rem 0;
}
@media screen and (max-width: 540px) {
  .footer-menu {
    padding: 5rem 0;
  }
}
.footerMenu-logo img {
  width: 18rem;
}
@media screen and (max-width: 540px) {
  .footerMenu-logo img {
    width: 15rem;
  }
}
.footerMenu-menus {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.footerMenu-menus a {
  color: white;
}

.footerMenu-copy {
  font-size: 0.8rem;
  letter-spacing: normal;
  color: white;
}

.footer_company{
	text-align:center;
	font-size:0.9rem;
	margin-top:2rem;
	color:#fff;
}

/* ↓ PCとSP表示切り替え（末尾に設置） ------------------------*/
.pcArea {
  display: block;
}

.spArea {
  display: none;
}

@media screen and (max-width: 540px) {
  .pcArea {
    display: none;
  }

  .spArea {
    display: block;
  }
}
