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

html {
  font-size: 62.5%;
}

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* Scss Document */
/* Scss Document */
/* アニメーション記述用 */
@keyframes headerFixed {
  0% {
    transform: translateY(-90px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes SlideIn {
  0% {
    opacity: 0;
    transform: translateY(-90px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/* Scss Document */
body {
  box-sizing: border-box;
  line-height: 1.7333333333;
  text-align: justify;
  font-size: 1.3rem;
  color: #2F2F2F;
  font-family: "Hiragino UD Sans Rd W5 JIS2004", "游ゴシック体 Pr6N B", "YuGothic", "ヒラギノ角ゴ Pro W3", "Meiryo", sans-serif;
  word-wrap: break-word;
  font-weight: bold;
  background: #F5F5F5;
  -webkit-text-size-adjust: 100%;
}
@media (min-width: 769px) {
  body {
    font-size: calc(1.3rem + (1vw - 7.69px) * 0.3913894325);
  }
}
@media (min-width: 1280px) {
  body {
    font-size: 1.5rem;
  }
}

.t_center {
  text-align: center;
}

.t_left {
  text-align: left;
}

.t_right {
  text-align: right;
}

.sp {
  display: inherit;
}
@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media screen and (min-width: 1181px) {
  .sp {
    display: none;
  }
}

.tab {
  display: none;
}
@media screen and (min-width: 769px) {
  .tab {
    display: inherit;
  }
}
@media screen and (min-width: 1181px) {
  .tab {
    display: none;
  }
}

.sp_tab {
  display: inherit;
}
@media screen and (min-width: 769px) {
  .sp_tab {
    display: inherit;
  }
}
@media screen and (min-width: 1181px) {
  .sp_tab {
    display: none;
  }
}

.pc_tab {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc_tab {
    display: inherit;
  }
}
@media screen and (min-width: 1181px) {
  .pc_tab {
    display: inherit;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 1181px) {
  .pc {
    display: inherit;
  }
}

a, button {
  text-decoration: none;
  color: inherit;
  transition: 0.4s;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

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

.s-inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 850px;
  margin: auto;
  padding: 0 4%;
}
@media screen and (min-width: 961px) {
  .s-inner {
    padding: 0 2%;
  }
}
@media screen and (min-width: 1181px) {
  .s-inner {
    padding: 0;
  }
}

.m-inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 970px;
  margin: auto;
  padding: 0 4%;
  padding: 0 8%;
}
@media screen and (min-width: 961px) {
  .m-inner {
    padding: 0 2%;
  }
}
@media screen and (min-width: 1181px) {
  .m-inner {
    padding: 0;
  }
}

.l-inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 1120px;
  margin: auto;
  padding: 0 4%;
}
@media screen and (min-width: 961px) {
  .l-inner {
    padding: 0 2%;
  }
}
@media screen and (min-width: 1181px) {
  .l-inner {
    padding: 0;
  }
}

@media screen and (min-width: 1181px) {
  .s-inner {
    padding: 0;
  }
  .m-inner {
    padding: 0;
  }
}
h2 {
  font-size: 2rem;
  letter-spacing: 0.02em;
  text-align: center;
}
@media (min-width: 769px) {
  h2 {
    font-size: calc(2rem + (1vw - 7.69px) * 4.3052837573);
  }
}
@media (min-width: 1280px) {
  h2 {
    font-size: 4.2rem;
  }
}

h3 {
  font-size: 2rem;
  letter-spacing: 0.02em;
  text-align: center;
}
@media (min-width: 769px) {
  h3 {
    font-size: calc(2rem + (1vw - 7.69px) * 1.9569471624);
  }
}
@media (min-width: 1280px) {
  h3 {
    font-size: 3rem;
  }
}

p {
  font-size: 100%;
}

::selection {
  background: #F69320;
  color: #fff;
}

.en {
  font-family: "walter turncoat", sans-serif;
  letter-spacing: normal;
  font-weight: normal;
}

.num {
  font-family: "Poppins", sans-serif;
  letter-spacing: normal;
  font-weight: normal;
}

a:hover {
  opacity: 0.8;
}

.icon {
  margin-right: 5px;
}

.flex_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex_wrap > * {
  flex: 0 1 48%;
  width: 48%;
  max-width: 48%;
}

.box {
  margin-bottom: 11.6666666667%;
}
@media screen and (max-width: 769px) {
  .box {
    margin-bottom: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .box {
    margin-bottom: 140px;
  }
}

.cap {
  position: absolute;
  left: 5px;
  bottom: 5px;
  z-index: 1;
  font-size: 1rem;
  letter-spacing: normal;
  line-height: 1;
}

#contents {
  display: block;
  margin-top: 60px;
}

.attent {
  color: #ccc;
  font-size: 1rem;
  letter-spacing: normal;
}

.title {
  margin-bottom: 25px;
  text-align: center;
}
.title .title__en {
  font-size: 2rem;
  font-family: "walter turncoat", sans-serif;
  letter-spacing: 2px;
}
.title .maintitle__yomi {
  font-size: 1.3rem;
  color: #737373;
}

.btn a {
  box-sizing: border-box;
  display: block;
  margin: auto;
  padding: 20px;
  width: 100%;
  max-width: 500px;
  background: #F69320;
  font-size: 1.4rem;
  color: #fff;
  font-family: "Hiragino UD Sans Rd W6 JIS2004", "游ゴシック体 Pr6N B", "YuGothic", "ヒラギノ角ゴ Pro W3", "Meiryo", sans-serif;
  text-align: center;
  border: solid 3px #F69320;
  border-radius: 50px;
  transition: 0.3s;
}
.btn a i {
  margin-right: 3%;
  font-size: 2rem;
  vertical-align: middle;
}
.btn.contact-btn a {
  font-size: 1.4rem;
  max-width: 450px;
  color: #F69320;
  background: #fff;
  border: solid 3px #fff;
}
@media (min-width: 769px) {
  .btn.contact-btn a {
    font-size: calc(1.4rem + (1vw - 7.69px) * 1.1396011396);
  }
}
@media (min-width: 1120px) {
  .btn.contact-btn a {
    font-size: 1.8rem;
  }
}

/*------------------------------
		769px以上
------------------------------*/
@media screen and (min-width: 769px) {
  .btn a {
    width: 100%;
    max-width: 270px;
  }
  .btn a:hover {
    opacity: 1;
    color: #F69320;
    background: #fff;
    max-width: 320px;
    transition: 0.3s;
  }
  .btn.contact-btn a {
    padding: 30px 0;
  }
  .btn.contact-btn a:hover {
    max-width: 450px;
    color: #fff;
    background: #F69320;
  }
  .title {
    margin-bottom: 40px;
  }
}
/* Scss Document */
.header {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
}
.header__wrap {
  position: relative;
  height: 60px;
  background: #fff;
  box-shadow: 0 0 3px #E0E0E0;
}
.header__wrap .logo-wp {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20%;
  max-width: 70px;
  transform: translate(-50%, -50%);
  z-index: 999;
}
.header__menu-btn {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  right: 6%;
  width: 40px;
  height: 35px;
  z-index: 999;
}
.header__menu-btn p {
  color: #F69320;
  font-size: 1.1rem;
  text-align: center;
}
.header__menu-btn span {
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  border-radius: 4px;
  background: #F69320;
  transition: 0.3s;
}
.header__menu-btn span.center {
  top: 65%;
  transform: translate(0, -50%);
}
.header__menu-btn span:last-child {
  bottom: 0;
}
.header__menu-nav {
  display: none;
  position: relative;
  width: 100%;
  height: calc(100vh - 50px);
  background: rgba(255, 255, 255, 0.9);
}
.header__menu-nav-wrap {
  box-sizing: border-box;
  padding: 0 10%;
  padding-top: 10.5vh;
  padding-top: 10.5dvh;
  width: 100%;
  height: 100%;
}
.header__menu-nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__menu-nav ul li {
  flex: 0 1 48%;
  width: 48%;
  max-width: 48%;
  margin-bottom: 30px;
}
.header__menu-nav ul li span.en {
  color: #F69320;
}
.header__menu-nav a {
  display: block;
}
.header__menu-nav a span {
  display: block;
  line-height: 1.5;
  letter-spacing: 1.5px;
}
.header__menu-nav a .jp {
  font-size: 1.3rem;
  color: #2F2F2F;
  transition: 0.3s;
}
@media (min-width: 769px) {
  .header__menu-nav a .jp {
    font-size: calc(1.3rem + (1vw - 7.69px) * 0.1956947162);
  }
}
@media (min-width: 1280px) {
  .header__menu-nav a .jp {
    font-size: 1.4rem;
  }
}
.header__menu-nav a .en {
  font-size: 1.1rem;
  font-family: "walter turncoat", sans-serif;
  transition: 0.3s;
}
@media (min-width: 769px) {
  .header__menu-nav a .en {
    font-size: calc(1.1rem + (1vw - 7.69px) * 0.1956947162);
  }
}
@media (min-width: 1280px) {
  .header__menu-nav a .en {
    font-size: 1.2rem;
  }
}
.header__menu-nav a:hover {
  opacity: 1;
}
.header__menu-nav a:hover .jp {
  color: #F69320;
  transition: 0.3s;
}
.header__menu-nav a:hover .en {
  color: #F69320 !important;
  transition: 0.3s;
}
.header__menu-nav .active {
  color: #fff;
}
.header__contact {
  margin: 0 auto 20px;
  width: 100%;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}
.header__contact-tel {
  margin: 0 auto 20px;
  padding: 10px 0;
  width: 100%;
  max-width: 420px;
  border-top: solid 1px #F69320;
  border-bottom: solid 1px #F69320;
}
.header__contact-tel .header__contact-txt {
  font-size: 1.3rem;
  color: #2F2F2F;
}
.header__contact-tel a {
  margin: -5px auto;
  font-size: 3.4rem;
  font-weight: 500;
  color: #F69320;
}
.header__contact-tel .header__contact-time {
  font-size: 1.2rem;
  color: #2F2F2F;
}
.header__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.header__sns .header__sns-con {
  flex: 0 1 48%;
  width: 48%;
  max-width: 48%;
  max-width: 200px;
}
.header__sns .header__sns-con a {
  display: block;
  padding: 10px 20px;
  color: #fff !important;
  text-align: center;
  font-size: 1.3rem;
  border-radius: 10px;
  overflow: hidden;
}
.header__sns .header__sns-con a p {
  position: relative;
}
.header__sns .header__sns-con a p i {
  padding-right: 5px;
}
.header__sns .header__sns-con a:hover {
  opacity: 1;
}
.header__sns .header__sns-con.inst a {
  position: relative;
  background: -webkit-linear-gradient(top left, #427eff 0%, #f13f79 70%) no-repeat;
  background: -o-linear-gradient(top left, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(to bottom right, #427eff 0%, #f13f79 70%) no-repeat;
}
.header__sns .header__sns-con.inst a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(285deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: -o-linear-gradient(285deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}
.header__sns .header__sns-con.face a {
  background: #3B5998;
}
.header__sns .header__sns-con:first-child {
  margin-right: 2%;
}
.header__contact-on {
  display: none;
}

.open .header__menu-btn {
  transition: 0.3s;
  background: #F69320;
  height: 50px;
  width: 50px;
}
.open .header__menu-btn p {
  display: none;
}
.open .header__menu-btn span {
  width: 60%;
  left: 20%;
  background: #fff;
}
.open .header__menu-btn span.center {
  top: 25px;
  transform: rotate(-135deg);
}
.open .header__menu-btn span:last-child {
  bottom: 25px;
  transform: rotate(135deg);
}

/*------------------------------
		769px以上
------------------------------*/
/*------------------------------
		1181px以上
------------------------------*/
@media screen and (min-width: 1181px) {
  h1 {
    position: fixed;
    font-size: 1.3rem;
    line-height: 1;
    left: 5%;
    top: 15px;
    color: #ccc;
    letter-spacing: 0.1em;
    z-index: 1001;
  }
  .header {
    animation: headerFixed 0.5s ease 0s 1 alternate;
  }
  .header__wrap {
    height: 140px;
  }
  .header__menu-btn {
    display: none;
  }
  .header__menu-nav {
    display: block !important;
    position: static;
    height: auto;
    padding: 0;
    background: none;
  }
  .header__menu-nav-wrap {
    padding-top: 0;
    position: static;
    transform: none;
  }
  .header__menu-nav ul {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 2000px;
    margin: 0;
    -webkit-align-items: baseline;
    -webkit-align-items: baseline;
    -ms-align-items: baseline;
    align-items: baseline;
  }
  .header__menu-nav ul li {
    flex: 0 1 auto;
    width: auto;
    max-width: auto;
    margin-bottom: 0px;
  }
  .header__menu-nav ul li a {
    padding: 0;
  }
  .header__menu-nav ul li a span {
    text-align: center;
  }
  .header__menu-nav ul li a:hover {
    opacity: 1;
  }
  .header__menu-nav ul li a:hover .jp {
    color: #F69320;
    transition: 0.3s;
  }
  .header__menu-nav ul li a.active .jp {
    color: #F69320;
  }
  .header__menu-nav ul li.img-logo {
    display: flex;
  }
  .header__menu-nav ul li.img-logo a {
    width: 115px;
    max-width: 115px;
  }
  .header__contact {
    display: none;
  }
  .header__sns {
    position: absolute;
    display: block;
    top: 0;
    right: 5%;
    width: 225px;
  }
  .header__sns .header__sns-con {
    width: 110px;
    max-width: 110px;
    float: left;
  }
  .header__sns .header__sns-con a {
    width: 100%;
    padding: 5px 0;
    border-radius: 0 0 10px 10px;
  }
  .header__sns .header__sns-con.inst a {
    padding: 0;
  }
  .header__sns .header__sns-con.inst a p {
    margin: 0 auto 1px;
    padding: 5px 0 4px;
    width: 98%;
    border-radius: 0 0 9px 9px;
  }
  .header__sns .header__sns-con.inst a:hover {
    color: #F69320 !important;
  }
  .header__sns .header__sns-con.inst a:hover p {
    background: #fff;
  }
  .header__sns .header__sns-con.face a {
    border-bottom: solid 1px #3B5998;
    border-left: solid 1px #3B5998;
    border-right: solid 1px #3B5998;
  }
  .header__sns .header__sns-con.face a:hover {
    color: #3B5998 !important;
    background: #fff;
  }
  .on {
    animation: SlideIn 0.5s;
  }
  .on h1 {
    display: none;
  }
  .on .header__wrap {
    height: 80px;
  }
  .on .header__menu-nav ul {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    left: 47.5%;
  }
  .on .header__menu-nav ul li {
    margin-right: 3%;
  }
  .on .header__menu-nav ul li a .jp {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1181px) and (min-width: 1180px) {
  .on .header__menu-nav ul li a .jp {
    font-size: calc(1.3rem + (1vw - 11.8px) * 1);
  }
}
@media screen and (min-width: 1181px) and (min-width: 1280px) {
  .on .header__menu-nav ul li a .jp {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1181px) {
  .on .header__menu-nav ul li a .en {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 1181px) and (min-width: 1180px) {
  .on .header__menu-nav ul li a .en {
    font-size: calc(1.1rem + (1vw - 11.8px) * 1);
  }
}
@media screen and (min-width: 1181px) and (min-width: 1280px) {
  .on .header__menu-nav ul li a .en {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1181px) {
  .on .header__menu-nav ul li:first-child {
    order: 2;
  }
  .on .header__menu-nav ul li:nth-child(2) {
    order: 3;
  }
  .on .header__menu-nav ul li:nth-child(3) {
    order: 4;
  }
  .on .header__menu-nav ul li:nth-child(4) {
    order: 5;
  }
  .on .header__menu-nav ul li:nth-child(5) {
    order: 1;
    margin-right: 4.5%;
  }
  .on .header__menu-nav ul li:nth-child(5) a {
    max-width: 90px;
  }
  .on .header__menu-nav ul li:nth-child(6) {
    order: 6;
  }
  .on .header__menu-nav ul li:nth-child(7) {
    order: 7;
  }
  .on .header__menu-nav ul li:nth-child(8) {
    order: 8;
  }
  .on .header__menu-nav ul li.normal_only {
    display: none;
  }
  .on .header__sns {
    display: none;
  }
  .on .header__contact-on {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
  }
  .on .header__contact-on a {
    padding: 22px;
    width: 175px;
    max-width: 175px;
    text-align: center;
    color: #fff;
    font-size: 1.4rem;
    background: #F69320;
    box-sizing: border-box;
    border-radius: 0 0 0 10px;
    border: solid 2px #F69320;
    border-top: none;
    border-right: none;
  }
  .on .header__contact-on a i {
    padding-right: 5px;
    font-size: 1.7rem;
  }
  .on .header__contact-on a p {
    font-size: 1.2rem;
  }
  .on .header__contact-on a:hover {
    color: #F69320;
    background: #fff;
  }
}
/*------------------------------
		961px以上
------------------------------*/
/*------------------------------
		1400px以上
------------------------------*/
@media screen and (min-width: 1350px) {
  .on .header__menu-nav ul li {
    margin-right: 4%;
  }
  .on .header__menu-nav ul li:nth-child(5) {
    margin-right: 5.5%;
  }
}
/*------------------------------
		1600px以上
------------------------------*/
/* Scss Document */
.footer {
  margin-bottom: 50px;
  color: #fff;
  background: #A08F7A;
  box-sizing: border-box;
}
.footer #gotop {
  margin-bottom: 40px;
  padding: 30px;
  width: 100%;
  font-family: "Poppins", sans-serif;
  color: #fff;
  border-bottom: solid 1px #fff;
}
.footer #gotop p {
  width: 100%;
  font-size: 1.2rem;
  text-align: center;
  font-family: "walter turncoat", sans-serif;
  letter-spacing: 1.2px;
}
.footer #gotop p span {
  display: inline-block;
}
.footer #gotop p i {
  font-size: 1.5rem;
  padding-left: 15px;
}
.footer__wrap {
  max-width: 1300px;
  width: 100%;
  margin: auto;
  box-sizing: border-box;
}
.footer__wrap .footer__txt {
  margin-bottom: 15px;
}
.footer__wrap .footer__txt .footer__txt-main {
  font-size: 1.5rem;
}
@media (min-width: 769px) {
  .footer__wrap .footer__txt .footer__txt-main {
    font-size: calc(1.5rem + (1vw - 7.69px) * 0.5870841487);
  }
}
@media (min-width: 1280px) {
  .footer__wrap .footer__txt .footer__txt-main {
    font-size: 1.8rem;
  }
}
.footer__wrap .footer__txt .footer__txt-sub {
  font-size: 1.3rem;
}
@media (min-width: 769px) {
  .footer__wrap .footer__txt .footer__txt-sub {
    font-size: calc(1.3rem + (1vw - 7.69px) * 0.3913894325);
  }
}
@media (min-width: 1280px) {
  .footer__wrap .footer__txt .footer__txt-sub {
    font-size: 1.5rem;
  }
}
.footer__wrap .footer__txt .footer__info {
  margin-bottom: 5px;
  line-height: 1.5;
}
.footer__nav {
  font-size: 1.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 20px 0;
}
@media (min-width: 769px) {
  .footer__nav {
    font-size: calc(1.2rem + (1vw - 7.69px) * 2.4691358025);
  }
}
@media (min-width: 850px) {
  .footer__nav {
    font-size: 1.4rem;
  }
}
.footer__nav li {
  display: inline-block;
  position: relative;
  flex: 0 1 33.33%;
  width: 33.33%;
  max-width: 33.33%;
  margin-bottom: 20px;
}
.footer__nav li a {
  display: block;
}
.footer__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 40px;
}
.footer__sns .footer__sns-con {
  flex: 0 1 45%;
  width: 45%;
  max-width: 45%;
  max-width: 120px;
}
.footer__sns .footer__sns-con a {
  display: block;
  padding: 10px 15px;
  font-size: 1.3rem;
  text-align: center;
  border-radius: 50px;
  border: solid 2px #fff;
}
.footer__sns .footer__sns-con a i {
  padding-right: 5px;
  font-size: 1.7rem;
}
.footer__sns .footer__sns-con a:hover {
  color: #A08F7A;
  background: #fff;
  opacity: 1;
}
.footer__sns .footer__sns-con:last-child {
  margin-left: 3%;
}
.footer__logo {
  margin: 0 auto 30px;
  width: 45%;
  max-width: 115px;
}
.footer__box .footer__txt {
  font-size: 1.2rem;
  text-align: center;
}
@media (min-width: 769px) {
  .footer__box .footer__txt {
    font-size: calc(1.2rem + (1vw - 7.69px) * 1.0471204188);
  }
}
@media (min-width: 960px) {
  .footer__box .footer__txt {
    font-size: 1.4rem;
  }
}
.footer .copyright {
  padding: 20px 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  text-align: center;
  font-weight: normal;
}

.fixed__nav {
  width: 100vw;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10000;
}
.fixed__nav .fixed__nav_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.fixed__nav .fixed__nav_inner .fixed__nav_link {
  flex: 0 1 50%;
  width: 50%;
  max-width: 50%;
  padding: 15.25px 10px;
  font-family: "Hiragino UD Sans Rd W6 JIS2004", "游ゴシック体 Pr6N B", "YuGothic", "ヒラギノ角ゴ Pro W3", "Meiryo", sans-serif;
  font-size: 15px;
  line-height: 1.3em;
  letter-spacing: 0.1em;
  text-align: center;
  box-sizing: border-box;
  color: #000;
}
.fixed__nav .fixed__nav_inner .fixed__nav_link.link_contact {
  background: #feff00;
}
.fixed__nav .fixed__nav_inner .fixed__nav_link.link_soudan {
  background: #4fcaff;
}
.fixed__nav .fixed__nav_inner .fixed__nav_link:hover {
  opacity: 1;
}

/*------------------------------
		769px以上
------------------------------*/
@media screen and (min-width: 769px) {
  .footer {
    margin-bottom: 55px;
    padding: 4% 0;
  }
  .footer #gotop {
    position: fixed;
    margin: 0;
    padding: 0;
    bottom: calc(2% + 55px);
    right: 2%;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50px;
    border-bottom: none;
  }
  .footer #gotop p span {
    display: none;
  }
  .footer #gotop p i {
    color: #2F2F2F;
    font-size: 1.7rem;
    padding-left: 0;
  }
  .footer #gotop:hover {
    background: #2F2F2F;
  }
  .footer #gotop:hover p i {
    color: #fff;
  }
  .footer nav {
    padding: 20px 0 0;
  }
  .footer__nav {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto 50px;
    padding: 0;
  }
  .footer__nav li {
    flex: 0 1 auto;
    width: auto;
    max-width: auto;
    text-align: center;
  }
  .footer__nav li a {
    display: inline-block;
  }
  .footer__nav li:after {
    content: none;
  }
  .footer__nav li:last-child {
    margin-bottom: 20px;
  }
  .footer__order {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .footer__order .footer__sns {
    flex: 0 1 100%;
    width: 100%;
    max-width: 100%;
    order: 2;
  }
  .footer__order .footer__logo {
    flex: 0 1 100%;
    order: 1;
  }
  .footer__sub-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .footer__sub-nav li a {
    border-bottom: none;
  }
  .footer .copyright {
    padding: 0;
    text-align: center;
  }
  .fixed__nav .fixed__nav_inner .fixed__nav_link {
    padding: 16.5px 10px;
    font-size: 17px;
    line-height: 1.2945em;
  }
}
/*------------------------------
		961px以上
------------------------------*/
@media screen and (min-width: 961px) {
  .footer {
    margin-bottom: 0;
  }
  .footer #gotop {
    bottom: 2%;
  }
  .footer__sub-nav {
    margin-bottom: 0;
  }
  .footer__nav li {
    text-align: left;
  }
  .footer__name {
    flex: 0 1 30%;
    width: 30%;
    max-width: 30%;
    text-align: left;
  }
  .footer__name p {
    text-align: left;
  }
  .footer__name img {
    margin: 0 0 10px 0;
  }
  .fixed__nav {
    width: auto;
    height: 370px;
    top: 42%;
    left: auto;
    right: 0;
    bottom: auto;
    transform: translateY(-50%);
  }
  .fixed__nav .fixed__nav_inner {
    flex-flow: column wrap;
    align-content: flex-end;
    align-items: flex-end;
    height: 100%;
  }
  .fixed__nav .fixed__nav_inner .fixed__nav_link {
    flex: 0 1 auto;
    width: auto;
    max-width: auto;
    max-width: unset;
    padding: 45px 15px;
    font-size: 18px;
    line-height: 1.3em;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: relative;
  }
  .fixed__nav .fixed__nav_inner .fixed__nav_link::after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-size: 20px;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    letter-spacing: 0;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    transition: 0.35s ease;
  }
  .fixed__nav .fixed__nav_inner .fixed__nav_link:hover {
    padding-right: 35px;
  }
  .fixed__nav .fixed__nav_inner .fixed__nav_link:hover::after {
    right: 8px;
  }
}
/*------------------------------
		1181px以上
------------------------------*/
.contact {
  position: relative;
  background: url(/img/common/bg_contact_sp.jpg) center/cover no-repeat;
  padding: 10% 0%;
  color: #fff;
  text-align: center;
}
.contact .contact__ttl {
  font-size: 1.5rem;
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}
@media (min-width: 769px) {
  .contact .contact__ttl {
    font-size: calc(1.5rem + (1vw - 7.69px) * 4.2735042735);
  }
}
@media (min-width: 1120px) {
  .contact .contact__ttl {
    font-size: 3rem;
  }
}
.contact .contact__wrap {
  position: relative;
  z-index: 1;
}
.contact .contact__wrap .contact__box {
  box-sizing: border-box;
}
.contact .contact__wrap .contact__box:first-child {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #fff;
}
.contact .contact__wrap .contact__box-ttl {
  font-size: 1.3rem;
}
@media (min-width: 769px) {
  .contact .contact__wrap .contact__box-ttl {
    font-size: calc(1.3rem + (1vw - 7.69px) * 1.4245014245);
  }
}
@media (min-width: 1120px) {
  .contact .contact__wrap .contact__box-ttl {
    font-size: 1.8rem;
  }
}
.contact .contact__wrap .contact__box-ttl.mail {
  margin-bottom: 20px;
}
.contact .contact__wrap .contact__telnum a {
  font-size: 3.4rem;
  font-weight: 500;
}
@media (min-width: 769px) {
  .contact .contact__wrap .contact__telnum a {
    font-size: calc(3.4rem + (1vw - 7.69px) * 4.5584045584);
  }
}
@media (min-width: 1120px) {
  .contact .contact__wrap .contact__telnum a {
    font-size: 5rem;
  }
}
.contact .contact__wrap .contact__mail {
  font-size: 2.4rem;
}
.contact .contact__wrap .contact__txt {
  font-size: 1.3rem;
  font-weight: bold;
}
.contact::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(110, 100, 88, 0.5);
}

.ttl-wp {
  position: absolute;
  top: -20px;
  left: 50%;
  width: 100%;
  transform: translate(-50%, 0);
}
.ttl-wp figure {
  margin: 0 auto 10px;
  width: 40px;
}
.ttl-wp h2 {
  font-size: 1.8rem;
  font-family: "Hiragino UD Sans Rd W6 JIS2004", "游ゴシック体 Pr6N B", "YuGothic", "ヒラギノ角ゴ Pro W3", "Meiryo", sans-serif;
  text-align: center;
  color: #F69320;
}
@media (min-width: 769px) {
  .ttl-wp h2 {
    font-size: calc(1.8rem + (1vw - 7.69px) * 1.7094017094);
  }
}
@media (min-width: 1120px) {
  .ttl-wp h2 {
    font-size: 2.4rem;
  }
}
.ttl-wp p {
  font-size: 1.2rem;
  margin: -5px auto 0;
  text-align: center;
  color: #F69320;
}
@media (min-width: 769px) {
  .ttl-wp p {
    font-size: calc(1.2rem + (1vw - 7.69px) * 1.1396011396);
  }
}
@media (min-width: 1120px) {
  .ttl-wp p {
    font-size: 1.6rem;
  }
}

.titleimg {
  margin: 0 auto 35px;
  padding-top: 40px;
}
.titleimg .titleimg__wrap {
  color: #F69320;
  text-align: center;
}
.titleimg .titleimg__wrap figure {
  margin: 0 auto 10px;
  width: 12%;
  max-width: 65px;
}
.titleimg .titleimg__wrap .titleimg__ttl {
  font-size: 1.8rem;
  font-family: "Hiragino UD Sans Rd W6 JIS2004", "游ゴシック体 Pr6N B", "YuGothic", "ヒラギノ角ゴ Pro W3", "Meiryo", sans-serif;
}
@media (min-width: 769px) {
  .titleimg .titleimg__wrap .titleimg__ttl {
    font-size: calc(1.8rem + (1vw - 7.69px) * 2.5974025974);
  }
}
@media (min-width: 1000px) {
  .titleimg .titleimg__wrap .titleimg__ttl {
    font-size: 2.4rem;
  }
}
.titleimg .titleimg__wrap .titleimg__en-ttl {
  font-size: 1.2rem;
}
@media (min-width: 769px) {
  .titleimg .titleimg__wrap .titleimg__en-ttl {
    font-size: calc(1.2rem + (1vw - 7.69px) * 1.7316017316);
  }
}
@media (min-width: 1000px) {
  .titleimg .titleimg__wrap .titleimg__en-ttl {
    font-size: 1.6rem;
  }
}

/*------------------------------
		769px以上
------------------------------*/
@media screen and (min-width: 769px) {
  .contact {
    padding: 5% 0%;
    background: url(/img/common/bg_contact_pc.jpg) center/cover no-repeat;
  }
  .contact .contact__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .contact .contact__wrap .contact__box {
    flex: 0 1 48.5%;
    width: 48.5%;
    max-width: 48.5%;
    padding: 3.3%;
  }
  .contact .contact__wrap .contact__box:first-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    border-right: solid 1px #fff;
  }
  .contact .contact__wrap .contact__box-title:after {
    width: 70%;
  }
  .ttl-wp {
    top: -35px;
  }
  .ttl-wp figure {
    width: 70px;
  }
}
/*------------------------------
		961px以上
------------------------------*/
/*------------------------------
		1181px以上
------------------------------*/
/*------------------------------
		1600px以上
------------------------------*/
/* Scss Document */
.form-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 50px;
}
.form-group.error {
  background: #ffe7df;
}
.form-group .form-title {
  flex: 0 1 20%;
  width: 20%;
  max-width: 20%;
  font-size: 1.4rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .form-group .form-title {
    font-size: calc(1.4rem + (1vw - 7.68px) * 0.462962963);
  }
}
@media (min-width: 1200px) {
  .form-group .form-title {
    font-size: 1.6rem;
  }
}
.form-group .txt {
  flex: 0 1 70%;
  width: 70%;
  max-width: 70%;
}
.form-group .txt .form-control {
  box-sizing: border-box;
  padding: 10px;
  width: 100%;
}
.form-group .txt .form-control.datepicker {
  max-width: 160px;
}
.form-group .txt span {
  display: block;
}
.form-group .txt .datepicer_box {
  position: relative;
}

select {
  padding: 6px 12px 6px 6px;
  font-size: 1.3rem;
  border: 1px solid #aaa;
  border-radius: 2px;
  background: transparent;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.form_label {
  vertical-align: middle;
  margin: 5px 12px 5px 0;
  cursor: pointer;
}
.form_label input[type=radio] {
  display: none;
}
.form_label input[type=radio] + .radio-parts {
  position: relative;
  padding-left: 26px;
}
.form_label input[type=radio] + .radio-parts:before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #aaa;
  border-radius: 50%;
}
.form_label input[type=radio] + .radio-parts:after {
  content: "";
  display: none;
  box-sizing: border-box;
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  background: #F69320;
  border-radius: 50%;
}
.form_label input[type=radio]:checked + .radio-parts {
  color: #F69320;
}
.form_label input[type=radio]:checked + .radio-parts:before {
  border-color: #F69320;
}
.form_label input[type=radio]:checked + .radio-parts:after {
  display: block;
}
.form_label input[type=checkbox] {
  display: none;
}
.form_label input[type=checkbox] + .checkbox-parts {
  position: relative;
  padding-left: 26px;
}
.form_label input[type=checkbox] + .checkbox-parts:before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border: 1px solid #aaa;
  border-radius: 3px;
}
.form_label input[type=checkbox] + .checkbox-parts:after {
  content: "";
  display: none;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 1px;
  width: 18px;
  height: 10px;
  border-left: 2px solid #F69320;
  border-bottom: 2px solid #F69320;
  transform: rotate(-50deg);
}
.form_label input[type=checkbox]:checked + .checkbox-parts {
  color: #F69320;
}
.form_label input[type=checkbox]:checked + .checkbox-parts:after {
  display: block;
}

.required {
  display: inline-block;
  vertical-align: middle;
  margin: 0 6px;
  padding: 3px;
  line-height: 1;
  font-weight: normal;
  font-size: 1rem;
  color: #fff;
  background: #F69320;
  border-radius: 2px;
}

.attention {
  margin: 3px 0;
  font-size: 1.2rem;
  letter-spacing: normal;
  color: #666;
}
.attention:before {
  content: "※";
}
.attention.option-color_red {
  color: #FF5722;
}

.ui-datepicker-trigger {
  display: none;
}

#ui-datepicker-div {
  z-index: 991 !important;
  width: auto;
  font-family: inherit;
  border-radius: 0;
  top: 100% !important;
  left: 0 !important;
}
#ui-datepicker-div .ui-datepicker-header {
  height: 40px;
  border: none;
  background: transparent;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title {
  height: 40px;
  line-height: 40px;
  margin: 0 40px;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev {
  width: 40px;
  height: 40px;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next.ui-state-hover,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev.ui-state-hover {
  border: none;
  background: transparent;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next span,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev span {
  position: absolute;
  top: 50%;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  background: transparent;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next span {
  right: 50%;
  transform: rotate(135deg) translateY(50%);
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev span {
  left: 50%;
  transform: rotate(-45deg) translateY(-50%);
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next-hover {
  top: 2px;
  right: 2px;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev-hover {
  top: 2px;
  left: 2px;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-year {
  width: auto;
  margin-right: 3px;
  font-family: inherit;
  font-size: 1.3rem;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-month {
  width: auto;
  margin-left: 6px;
  font-family: inherit;
  font-size: 1.3rem;
}
#ui-datepicker-div .ui-datepicker-calendar {
  font-size: 1.1rem;
}
#ui-datepicker-div .ui-datepicker-calendar th {
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 1.1rem;
  line-height: 40px;
  font-weight: 200;
}
#ui-datepicker-div .ui-datepicker-calendar td {
  width: 40px;
  height: 40px;
  padding: 0;
  line-height: 40px;
}
#ui-datepicker-div .ui-datepicker-calendar td.ui-state-disabled {
  background: #ddd;
}
#ui-datepicker-div .ui-datepicker-calendar td.ui-datepicker-other-month {
  background: transparent;
}
#ui-datepicker-div .ui-datepicker-calendar td.ui-datepicker-current-day, #ui-datepicker-div .ui-datepicker-calendar td:hover {
  background: #F69320;
}
#ui-datepicker-div .ui-datepicker-calendar td.ui-datepicker-current-day a, #ui-datepicker-div .ui-datepicker-calendar td:hover a {
  color: #fff;
}
#ui-datepicker-div .ui-datepicker-calendar td a {
  color: #F69320;
}
#ui-datepicker-div .ui-datepicker-calendar td a, #ui-datepicker-div .ui-datepicker-calendar td span {
  padding: 0;
  text-align: center;
  border: none;
  background: transparent;
}

.state_message {
  margin-bottom: 60px;
  text-align: center;
}
.state_message p {
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  background: #5bb75b;
}
.state_message p.class-ng {
  background: #F69320;
}
.state_message p.red {
  background: #EA0000;
}

/*------------------------------
		980px以上
------------------------------*/
/*------------------------------
		1280px以上
------------------------------*/