@charset "UTF-8";
/* reset CSS */
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
tfoot,
thead,
time,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* reset CSS ここまで */
html {
  font-size: 62.5%;
}

body {
  font: 1.6rem/1.5 sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  position: relative;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: underline;
  color: #0000ff;
}

a:hover {
  color: #f00;
}

a:active {
  color: #f6d104;
}

a:visited {
  color: #661aac;
}

li {
  list-style: none;
}

main {
  display: block;
}

p {
  font-family: "Noto Sans JP", sans-serif;
}

/* -- LAYOUT -- */
.scrollToTop {
  position: fixed;
  z-index: 10;
  bottom: 20px;
  right: 20px;
  width: 61px;
  height: 61px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  display: none;
}

/*/////////////////////////ヘッダー///////////////////////*/
.spFixed {
  display: none;
}

header {
  width: 100%;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #ff0000;
  display: none;
  border-bottom: 1px solid black;
}

header a:link,
header a:visited {
  color: #ffffff;
  text-decoration: none;
}

header nav ul {
  width: 1000px;
  margin: 0 auto;
  padding: 10px 0;
  list-style-type: none;
  font-size: 12px;
  letter-spacing: 0.2em;
  line-height: 27px;
}

header nav ul li {
  display: inline-block;
  margin-left: 3em;
}

header nav ul li:first-child {
  margin-left: 0;
}

.abeicon {
  position: absolute;
  bottom: 0;
  left: 30px;
  z-index: 10;
}

.sharebtn {
  position: absolute;
  top: 13px;
  right: 10px;
  z-index: 10;
}

.sharebtn p {
  display: inline-block;
  margin-left: 10px;
}

/*//////////////// ドロワーメニュー ////////////////*/
.spFixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 300;
}

.spFixed .navibtn {
  height: 24px;
  padding: 0 0 10px 0;
  background-color: rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 350;
  transition: all 0.3s ease-in-out;
}

.navibtn .hamburg {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  height: 2px;
  width: 24px;
  border-radius: 1px;
  background-color: white;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
}

.navibtn .hamburg:nth-child(1) {
  top: 30%;
}

.navibtn .hamburg:nth-child(2) {
  top: 50%;
}

.navibtn .hamburg:nth-child(3) {
  top: 70%;
}

.navibtn.close {
  background-color: red;
}

.navibtn.close .hamburg {
  top: 50%;
  background-color: black;
}

.navibtn.close .hamburg:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
}

.navibtn.close .hamburg:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 0;
}

.navibtn.close .hamburg:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
}

.spFixed nav.fixedNav {
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  padding: 44px 20px 10px;
  background-color: red;
  position: fixed;
  top: -100vh;
  left: 0;
  z-index: 250;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  overflow: auto;
}

.spFixed nav.fixedNav.open {
  top: 0;
  opacity: 1;
}

.spFixed nav.fixedNav ul {
  padding: 5px 0 30px;
}

.spFixed nav.fixedNav ul li {
  margin-bottom: 10px;
}

.spFixed nav.fixedNav ul li:last-child {
  margin-bottom: 0;
}

.spFixed nav.fixedNav ul li a {
  display: block;
  line-height: 1.25;
  position: relative;
  padding-left: 15px;
  font-size: 95%;
  color: white;
  text-decoration: none;
}

.spFixed nav.fixedNav ul li a::before {
  content: "";
  width: 10px;
  height: 2px;
  background-color: white;
  border-radius: 1px;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 0.5em;
}

.spFixed nav.fixedNav ul li a span.date {
  display: block;
}

.spFixed nav.fixedNav ul li a.navCont {
  font-size: 108%;
  line-height: 1.35;
}

.spFixed nav.fixedNav ul li.noticeEnd {
  padding-bottom: 20px;
  border-bottom: solid 1px white;
  margin-bottom: 20px;
}

.spFixed nav.fixedNav ul li.contEnd {
  padding-bottom: 20px;
  border-bottom: solid 1px white;
  margin-bottom: 20px;
}

.spFixed nav.fixedNav ul li a.navCont span.subTit {
  font-size: 90%;
  display: block;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .pcmenu,
  .abeicon,
  .sharebtn {
    display: none !important;
  }
  .spFixed {
    display: block;
  }
}

@media (max-width: 767px) {
  .pcmenu,
  .abeicon,
  .sharebtn {
    display: none !important;
  }
  .spFixed {
    display: block;
  }
}

.wrapper {
  width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .wrapper {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .wrapper {
    width: 95%;
    margin: 0 auto;
  }
}

#headlogo2 {
  padding: 100px 0 100px 0;
  height: auto;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1000px) {
  #headlogo2 {
    padding: 150px 0 80px 0;
    height: auto;
    text-align: center;
  }
}

@media (max-width: 767px) {
  #headlogo2 {
    padding: 150px 0 30px 0;
    height: auto;
    text-align: center;
  }
}

.abelogobace2 {
  width: 500px;
  height: 96px;
  background-image: url("https://www.tfm.co.jp/abe/image/abelogo.png");
  background-repeat: no-repeat;
  margin: 0 auto;
  position: relative;
  background-position: center 0%;
  background-size: contain;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .abelogobace2 {
    width: 80%;
    min-height: 100px;
    background-image: url("https://www.tfm.co.jp/abe/image/abelogo.png");
    background-repeat: no-repeat;
    margin: 0 auto;
    position: relative;
    background-position: center 0%;
    background-size: contain;
  }
}

@media (max-width: 767px) {
  .abelogobace2 {
    width: 80%;
    min-height: 100px;
    background-image: url("https://www.tfm.co.jp/abe/image/abelogo.png");
    background-repeat: no-repeat;
    margin: 0 auto;
    position: relative;
    background-position: center 0%;
    background-size: contain;
  }
}

main {
  background: url(../../img/bg3.png);
  border-top: 1px solid #f00;
  border-bottom: 1px solid #f00;
  padding: 30px 0;
}

@media (min-width: 768px) and (max-width: 1000px) {
  main {
    padding: 15px 0;
  }
}

@media (max-width: 767px) {
  main {
    padding: 15px 0;
    background-size: 150px;
    background-position: center top;
  }
}

.ttl {
  width: 1000px;
  text-align: center;
  margin: 40px auto;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .ttl {
    width: 80%;
    margin: 40px auto 20px;
  }
}

@media (max-width: 767px) {
  .ttl {
    width: 90%;
    margin: 40px auto 10px;
  }
}

.ttl_img {
  position: relative;
  margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .ttl_img {
    margin-bottom: 5px;
  }
}

@media (max-width: 767px) {
  .ttl_img {
    margin-bottom: 5px;
  }
}

.ttl_img::after {
  content: "";
  display: block;
  position: absolute;
  right: 18px;
  bottom: 0;
  width: 10.6%;
  max-width: 106px;
  height: 44px;
  background: url(../../img/ttl2.png) no-repeat;
  background-size: contain;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .ttl_img::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .ttl_img::after {
    display: none;
  }
}

.ttl_img2 {
  display: none;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .ttl_img2 {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
  }
  .ttl_img2 img {
    width: 20%;
    max-width: 106px;
  }
}

@media (max-width: 767px) {
  .ttl_img2 {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
  }
  .ttl_img2 img {
    width: 15%;
    max-width: 106px;
  }
}

.ttl_txt {
  font-size: 3.6rem;
  color: #f00;
  text-decoration: underline;
  animation: rainbow 2s infinite;
  -webkit-animation: rainbow 2s infinite;
  background: #fff;
  padding: 10px 30px;
  display: inline-block;
  border: #f00 5px double;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .ttl_txt {
    font-size: 2.8rem;
  }
}

@media (max-width: 767px) {
  .ttl_txt {
    font-size: 1.8rem;
    box-sizing: border-box;
    padding: 10px 15px;
  }
}

.ttl_lead {
  display: inline-block;
  color: #000;
  font-size: 1.8rem;
  font-weight: bold;
  box-sizing: border-box;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .ttl_lead {
    font-size: 1.4rem;
    text-align: left;
    padding: 10px 20px 0;
  }
  .ttl_lead br {
    display: none;
  }
}

@media (max-width: 767px) {
  .ttl_lead {
    font-size: 1.3rem;
    text-align: left;
    padding: 10px 15px 0;
  }
  .ttl_lead br {
    display: none;
  }
}

.ttl_theme {
  position: relative;
  display: inline-block;
  color: #fff !important;
  text-decoration: none;
  background: #f00;
  padding: 20px 15px 15px;
  margin: 15px;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
}

.ttl_theme .player {
  width: 40%;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .ttl_theme .player {
    width: 70%;
  }
}

.ttl_theme span {
  font-size: 2.4rem;
  text-decoration: underline;
}

.ttl_theme:hover {
  color: #f00 !important;
  background: #ff0 !important;
}

.ttl_theme_new {
  position: absolute;
  width: 82px;
  top: -20px;
  left: 0;
  right: 0;
  margin: auto;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .ttl_theme {
    font-size: 1.4rem;
    text-align: center;
    margin: 15px 7px 7px;
    padding: 15px 7px 7px;
  }
  .ttl_theme span {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  .ttl_theme_new {
    position: absolute;
    width: 60px;
    top: -12px;
  }
}

@media (max-width: 767px) {
  .ttl_theme {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: center;
    margin: 15px 7px 7px;
    padding: 15px 7px 7px;
  }
  .ttl_theme span {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  .ttl_theme_new {
    position: absolute;
    width: 60px;
    top: -12px;
  }
}

@keyframes rainbow {
  12% {
    color: #ff5353;
  }
  24% {
    color: #ffcf53;
  }
  36% {
    color: #e8ff53;
  }
  48% {
    color: #53ff5d;
  }
  60% {
    color: #53ffbc;
  }
  72% {
    color: #5393ff;
  }
  84% {
    color: #ca53ff;
  }
  100% {
    color: #ff53bd;
  }
}

@-webkit-keyframes rainbow {
  12% {
    color: #ff5353;
  }
  24% {
    color: #ffcf53;
  }
  36% {
    color: #e8ff53;
  }
  48% {
    color: #53ff5d;
  }
  60% {
    color: #53ffbc;
  }
  72% {
    color: #5393ff;
  }
  84% {
    color: #ca53ff;
  }
  100% {
    color: #ff53bd;
  }
}

.marquee {
  width: 70%;
  padding: 0.5em 0;
  overflow: hidden;
  background-color: #f6f6f6;
  margin-bottom: 10px;
  position: relative;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .marquee {
    width: 85%;
  }
}

@media (max-width: 767px) {
  .marquee {
    width: 100%;
  }
}

.marquee .ttl_txt_main:after {
  content: "";
  white-space: nowrap;
  padding-right: 0px;
}

.marquee .ttl_txt_main {
  margin: 0;
  padding-left: 100%;
  display: inline-block;
  white-space: nowrap;
  -webkit-animation-name: marquee;
  -webkit-animation-timing-function: linear;
  -webkit-animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-name: marquee;
  -moz-animation-timing-function: linear;
  -moz-animation-duration: 10s;
  -moz-animation-iteration-count: infinite;
  -ms-animation-name: marquee;
  -ms-animation-timing-function: linear;
  -ms-animation-duration: 10s;
  -ms-animation-iteration-count: infinite;
  -o-animation-name: marquee;
  -o-animation-timing-function: linear;
  -o-animation-duration: 10s;
  -o-animation-iteration-count: infinite;
  animation-name: marquee;
  animation-timing-function: linear;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

@-webkit-keyframes marquee {
  from {
    -webkit-transform: translate(0%);
  }
  99%,
  to {
    -webkit-transform: translate(-100%);
  }
}

@-moz-keyframes marquee {
  from {
    -moz-transform: translate(0%);
  }
  99%,
  to {
    -moz-transform: translate(-100%);
  }
}

@-ms-keyframes marquee {
  from {
    -ms-transform: translate(0%);
  }
  99%,
  to {
    -ms-transform: translate(-100%);
  }
}

@-o-keyframes marquee {
  from {
    -o-transform: translate(0%);
  }
  99%,
  to {
    -o-transform: translate(-100%);
  }
}

@keyframes marquee {
  from {
    transform: translate(0%);
  }
  99%,
  to {
    transform: translate(-100%);
  }
}

.cont {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 1000px;
  background: #f00;
  padding: 40px;
  box-sizing: border-box;
  margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .cont {
    width: 80%;
    margin: 0 auto;
    padding: 40px 20px;
  }
}

@media (max-width: 767px) {
  .cont {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
    padding: 40px 20px;
  }
}

.cont_i1 {
  position: absolute;
  left: -20px;
  top: -20px;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .cont_i1 {
    width: 60px;
    left: -15px;
    top: -15px;
  }
}

@media (max-width: 767px) {
  .cont_i1 {
    width: 50px;
    left: -10px;
    top: -10px;
  }
}

.cont_i2 {
  position: absolute;
  right: -20px;
  top: -20px;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .cont_i2 {
    width: 80px;
    right: -15px;
    top: -15px;
  }
}

@media (max-width: 767px) {
  .cont_i2 {
    width: 60px;
    right: -10px;
    top: -10px;
  }
}

.cont_i3 {
  position: absolute;
  left: -20px;
  bottom: -20px;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .cont_i3 {
    width: 80px;
    left: -15px;
    bottom: -15px;
  }
}

@media (max-width: 767px) {
  .cont_i3 {
    width: 60px;
    left: -10px;
    bottom: -10px;
  }
}

.cont_i4 {
  position: absolute;
  right: -20px;
  bottom: -20px;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .cont_i4 {
    width: 48px;
    right: -15px;
    bottom: -15px;
  }
}

@media (max-width: 767px) {
  .cont_i4 {
    width: 38px;
    right: -10px;
    bottom: -10px;
  }
}

.cont_abe {
  width: 250px;
  margin: 0 auto 30px;
  position: relative;
  left: -25px;
  top: 0;
  animation-name: return;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: unset;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .cont_abe {
    width: 25%;
    margin: 0 auto 20px;
  }
}

@media (max-width: 767px) {
  .cont_abe {
    width: 60%;
    margin: 0 auto 20px;
  }
}

@keyframes return {
  50% {
    left: 25px;
  }
  100% {
    left: -25px;
  }
}

.cont_lead {
  width: 62%;
}

.cont_lead_abe {
  font-size: 1.8rem !important;
  font-weight: bold;
  margin-bottom: 5px !important;
}

.cont_lead_p1 {
  float: right;
  width: 130px;
  margin-left: 15px;
}

.cont_lead_p2 {
  float: left;
  width: 100px;
  margin-right: 15px;
}

.cont_lead p {
  clear: both;
  font-size: 1.4rem;
  color: #fff;
  text-align: left;
  line-height: 1.8;
  margin-bottom: 20px;
}

.cont_lead h2 {
  font-size: 2rem;
  color: #fff;
  text-align: left;
  text-decoration: underline;
  margin-bottom: 20px;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .cont_lead {
    width: 65%;
  }
  .cont_lead_abe {
    font-size: 1.6rem !important;
  }
  .cont_lead p {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .cont_lead h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .cont_lead {
    width: 100%;
  }
  .cont_lead_abe {
    font-size: 1.6rem !important;
    text-align: center !important;
  }
  .cont_lead p {
    font-size: 1.4rem;
    margin-bottom: 10px;
    text-align: left;
  }
  .cont_lead p br {
    display: none;
  }
  .cont_lead h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
  }
}

.form {
  width: 1000px;
  background: #f00;
  padding: 80px 40px 40px;
  box-sizing: border-box;
  margin: -80px auto 0;
  color: #fff;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .form {
    width: 80%;
    padding: 40px 20px 20px;
    margin: -40px auto 0;
  }
}

@media (max-width: 767px) {
  .form {
    width: 90%;
    margin: -40px auto 0;
    padding: 40px 10px 20px;
  }
}

.form_hidden {
  display: none;
}

.form_note {
  width: 80%;
  margin: 30px auto;
  text-align: right;
}

.form_note span {
  background: #f00;
  color: #fff;
  padding: 5px;
  margin: 0 5px;
  border: 1px solid #fff;
  font-weight: bold;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .form_note {
    width: 100%;
    font-size: 1.4rem;
  }
}

@media (max-width: 767px) {
  .form_note {
    width: 100%;
    font-size: 1.2rem;
    margin: 30px auto;
  }
}

.form h2 {
  width: 80%;
  margin: 0 auto;
  font-size: 1.8rem;
  text-align: center;
  border: 5px double #f00;
  color: #000;
  background: #fff;
  padding: 20px 0;
}

.form h2 span {
  font-size: 2.4rem;
  color: #f00;
  font-weight: bold;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .form h2 {
    width: 100%;
    margin: 0 auto;
    font-size: 1.6rem;
  }
  .form h2 span {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .form h2 {
    width: 90%;
    margin: 0 auto;
    font-size: 1.4rem;
  }
  .form h2 span {
    font-size: 1.8rem;
  }
}

.form_table {
  width: 80%;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-collapse: separate;
  background: #bbb;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .form_table {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .form_table {
    width: 90%;
  }
}

.form_table .rq {
  background: #f00;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
}

.form_table th,
.form_table td {
  display: list-item !important;
  list-style: none;
  width: 100%;
  padding: 20px;
  border: 2px solid #ddd;
  background: #fff;
  color: #000;
  text-align: left;
  box-sizing: border-box;
}

.form_table th strong,
.form_table td strong {
  font-size: 1.6rem;
  background: linear-gradient(transparent 60%, #f8ef97 60%);
}

.form_table th strong span,
.form_table td strong span {
  color: #f00;
}

.form_table th span,
.form_table td span {
  font-size: 1.2rem;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .form_table th,
  .form_table td {
    padding: 10px;
  }
}

@media (max-width: 767px) {
  .form_table th,
  .form_table td {
    padding: 15px 10px;
  }
}

.form_table th {
  background: #eee;
  font-size: 1.4rem;
  vertical-align: middle;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .form_table th {
    display: list-item !important;
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .form_table th {
    display: list-item !important;
    background: #eee;
  }
}

.form_table td {
  font-size: 1.6rem;
  vertical-align: middle;
}

.form_table td input,
.form_table td textarea,
.form_table td select {
  width: 100%;
  font-size: 1.6rem;
  padding: 10px;
  box-sizing: border-box;
}

.form_table td input.age, .form_table td input.prefecture,
.form_table td textarea.age,
.form_table td textarea.prefecture,
.form_table td select.age,
.form_table td select.prefecture {
  width: 30% !important;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .form_table td input.age, .form_table td input.prefecture,
  .form_table td textarea.age,
  .form_table td textarea.prefecture,
  .form_table td select.age,
  .form_table td select.prefecture {
    width: 40% !important;
  }
}

@media (max-width: 767px) {
  .form_table td input,
  .form_table td textarea,
  .form_table td select {
    font-size: 1.4rem;
    padding: 5px;
    width: 100%;
  }
  .form_table td input.age, .form_table td input.prefecture,
  .form_table td textarea.age,
  .form_table td textarea.prefecture,
  .form_table td select.age,
  .form_table td select.prefecture {
    width: 70% !important;
  }
}

.form_table td textarea {
  min-height: 150px;
}

@media (max-width: 767px) {
  .form_table td {
    display: list-item !important;
    width: 100%;
    list-style: none;
  }
}

.form_caution {
  width: 80%;
  margin: 20px auto;
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
  color: #000;
  border: 2px solid #ccc;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .form_caution {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .form_caution {
    width: 90%;
  }
}

.form_caution_ttl {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .form_caution_ttl {
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .form_caution_ttl {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
}

.form_caution_list {
  font-size: 1.2rem;
  padding: 0 20px;
}

.form_caution_list li {
  list-style: disc;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .form_caution_list {
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .form_caution_list {
    font-size: 1rem;
    padding: 0 0 0 10px;
  }
}

.form input[type="submit"] {
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 40px 0;
  font-size: 3rem;
  line-height: 1.6rem;
  background-color: #ddd;
  border: none;
  border-radius: 5px;
  outline: 0;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  -webkit-appearance: none;
  box-shadow: 3px 3px 10px 0px rgba(255, 255, 255, 0.75) inset, -3px -3px 10px 0px rgba(0, 0, 0, 0.75) inset;
}

.form input[type="submit"]:hover {
  background-color: #ff0;
  color: #f00;
  box-shadow: -3px -3px 10px 0px rgba(255, 255, 255, 0.75) inset, 3px 3px 10px 0px rgba(0, 0, 0, 0.75) inset;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .form input[type="submit"] {
    width: 80%;
  }
}

@media (max-width: 767px) {
  .form input[type="submit"] {
    width: 90%;
    font-size: 2.4rem;
    padding: 30px 0;
  }
}

.fm-answer-radio {
  display: flex;
  width: 100% !important;
}

.radio-text {
  margin-right: 20px;
  /* width: 80px; */
  /* height: 30px; */
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* ラジオボタン */
label.radio-text {
  /* width: 60px; */
  cursor: pointer;
  position: relative;
  padding-top: 1px;
  padding-left: 5px;
  overflow: hidden;
  padding-left: 25px;
  display: inline-block;
}

label.radio-text:before {
  position: absolute;
  width: 17px;
  height: 17px;
  border: 1px solid #959595;
  border-radius: 50%;
  left: 0px;
  top: 4px;
  content: "";
  z-index: 3;
}

label.error:before {
  border: 1px solid #f03;
}

label.radio-text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 4px;
  top: 8px;
  background-color: #959595;
  z-index: 1;
}

label.radio-text input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 1px;
  margin: 0px;
  box-shadow: 20px -1px #fff;
}

label.radio-text input[type="radio"]:checked {
  box-shadow: none;
}

label.radio-text input[type="radio"]:focus {
  opacity: 0;
  box-shadow: 20px -1px #fff;
}

.thanks {
  text-align: center;
  margin: 0px auto 40px;
}

.thanks_link {
  text-align: center;
  display: block !important;
  color: #FFF !important;
  text-decoration: underline;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .thanks {
    margin-top: 20px !important;
  }
}

@media (max-width: 767px) {
  .thanks {
    margin-top: 20px !important;
  }
}

.errsec {
  margin-top: 80px !important;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .errsec {
    margin-top: 40px !important;
  }
}

@media (max-width: 767px) {
  .errsec {
    margin-top: 40px !important;
  }
}

label.error:before {
  border: 1px solid #f03;
}

.msg .error {
  text-align: center;
  font-size: 1.8rem;
  margin: 100px auto 140px;
}

.msg .error {
  text-align: center;
  font-size: 1.8rem;
  margin: 100px auto 140px;
}

label.error:before {
  border: 1px solid #f03;
}

label.error {
  background: #f8e2e2;
}

label.error:before {
  border: 1px solid #f03;
}

span.form__radio.error {
  max-width: 100%;
  background: #f8e2e2;
}

input[type="text"].error, input[type="email"].error, input[type="tel"].error, input[type="number"].error, input[type="url"].error, textarea.error {
  border: 1px solid #f03;
  background: #f8e2e2;
}

input.error:focus, textarea.error:focus {
  border: 1px solid #f03;
  background: #f8e2e2;
}

select.error {
  background: #f8e2e2;
  border: 1px solid #f03;
}

select.error:focus {
  background: #f8e2e2;
  border: 1px solid #f03;
}

input[type="file"].error {
  background: #f8e2e2;
}

input[type="number"],
input[type="tel"],
.age,
.zip {
  width: 70px !important;
}

footer {
  text-align: center;
  margin: 70px 0 100px 0;
}

footer .copyright {
  padding-top: 70px;
  font-size: 0.7em;
}

footer ul#footer_bnr_area li img {
  width: auto;
  height: 30px;
}

footer ul#footer_bnr_area li {
  display: inline-block;
  margin-right: 40px;
}

@media (min-width: 768px) and (max-width: 1000px) {
  footer {
    text-align: center;
    margin: 100px auto 100px auto;
    width: 80%;
  }
  footer .copyright {
    padding-top: 30px;
    font-size: 0.7em;
  }
  footer ul#footer_bnr_area {
    padding: 0;
  }
  footer ul#footer_bnr_area li img {
    width: 50%;
    max-width: 50%;
    height: auto;
  }
  footer ul#footer_bnr_area li {
    display: block;
    margin-bottom: 30px;
    margin-right: 0px;
  }
}

@media (max-width: 767px) {
  footer {
    text-align: center;
    margin: 100px auto 100px auto;
    width: 80%;
  }
  footer .copyright {
    padding-top: 30px;
    font-size: 0.7em;
  }
  footer ul#footer_bnr_area {
    padding: 0;
  }
  footer ul#footer_bnr_area li img {
    width: 50%;
    max-width: 50%;
    height: auto;
  }
  footer ul#footer_bnr_area li {
    display: block;
    margin-bottom: 30px;
    margin-right: 0px;
  }
}

/* 共通フッター用 もしくはブレイクポイントごとの表示指定 */
.pcDetail {
  display: block;
}

.spDetail {
  display: none;
}

.pc {
  display: block;
}

.tb {
  display: none;
}

.sp {
  display: none;
}

@media (max-width: 980px) {
  .spDetail {
    display: block;
  }
  .pcDetail {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1000px) {
  .pcDetail {
    display: none;
  }
  .tb {
    display: block !important;
  }
  .sp {
    display: none;
  }
}

@media (max-width: 767px) {
  .pcDetail {
    display: none;
  }
  .spDetail {
    display: block;
  }
  .pc {
    display: none;
  }
  .tb {
    display: none;
  }
  .sp {
    display: block !important;
  }
}
