@charset "UTF-8";

:root {
  --black: 51, 51, 51;
  --red: 255, 0, 0;
  --border: rgba(var(--black), .6);
  --contents_width: 695px;
  --body_padding_side: 60px;
  --contents_width_with_padding: 682px;
  --sidebar_width: 250px;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
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,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  word-break: break-all;
}

body {
  -webkit-text-size-adjust: 100%;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  word-break: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

ul:not([class]),
ol:not([class]) {
  padding-left: 1.25em;
}

ul[class],
ol[class] {
  list-style: none;
}

span {
  font-weight: inherit;
}

blockquote,
q {
  quotes: none;
}

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

a {
  color: inherit;
}

@media all and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}

a[class] {
  text-decoration: none;
}

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

mark {
  background-color: #ff9;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

address {
  font-style: normal;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgb(var(--border));
  margin: 1em 0;
  padding: 0;
}

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

iframe {
  max-width: 100%;
}

/* form
================================================== */
input[type=text],
input[type=email],
input[type=tel],
textarea,
button,
select,
option {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  outline: none;
  border: 1px solid;
  border-radius: 0;
  background: none;
}

@media all and (max-width: 767px) {

  input[type=text],
  input[type=email],
  input[type=tel],
  textarea,
  button,
  select,
  option {
    font-size: 1.6rem;
  }
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input[type=radio],
input[type=checkbox] {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

textarea {
  resize: vertical;
}

button {
  cursor: pointer;
}

/* 02_base
================================================ */
html {
  overflow: auto;
  scroll-behavior: smooth;
}

body {
  min-width: 360px;
  font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  color: #fff;
  background: url(../img/common/bg_pattern02_pc.png) no-repeat center / cover;
  font-size: 1.4rem;
  line-height: 1.714;
  overflow: hidden;
  height: 100%;
}

@media all and (min-width: 768px) {
  body {
    min-width: var(--contents_width_with_padding);
    font-size: 1.6rem;
  }
}

.l-wrapper {
  position: relative;
}


.l-container {
  position: relative;
  padding-bottom: 80px;
}

.l-header {
  position: relative;
}

.l-header::before {
  content: "";
  width: 1187px;
  height: 168px;
  background: url(../img/common/header_bg_sp.png) no-repeat center / contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}


@media all and (min-width: 768px) {
  .l-container {
    padding-bottom: 170px;
  }

  .l-header::before {
    height: 228px;
    background: url(../img/common/header_bg_pc.png) no-repeat center / contain;
  }

  .l-header--sub::before {
    top: -25%;
  }

}

#home .l-container {
  padding-bottom: 0;
}

/* sp <--> tb ~ pc
-------------------------------------- */
.u-media-query {
  display: none;
  font-family: "sp";
}

@media all and (min-width: 768px) {
  .u-media-query {
    font-family: "tb";
  }
}

@media all and (min-width: 682px) {
  .u-media-query {
    font-family: "pc";
  }
}

@media all and (max-width: 767px) {
  .u-view-pc {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .u-view-sp {
    display: none !important;
  }
}

/* link
-------------------------------------- */
a.u-alpha {
  display: block;
  text-decoration: none;
}

@media all and (min-width: 768px) {
  a.u-alpha {
    transition: all 0.3s ease;
  }

  a.u-alpha:hover {
    opacity: 0.7;
  }
}

/* layout
-------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
}

@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    -webkit-transform: translateX(-24px);
    transform: translateX(-24px);
  }
}

@media all and (min-width: 768px) {
  #home .u-inner {
    max-width: var(--contents_width);
  }
}

/* .l-main-img HOME
================================================ */
.l-main-img {
  position: relative;
}

.l-main-img__inner {
  padding-top: 205px;
  padding-bottom: 13px;
  padding-left: 14px;
}

.l-main-img__copy {
  width: 354px;
}

.l-main-img__img {
  width: 326px;
  position: absolute;
  top: 33px;
  left: 50%;
  transform: translateX(calc(-50% + 18px));
  z-index: -1;
}

@media all and (min-width: 768px) {
  .l-main-img__inner {
    padding: 234px 0 11px;
  }

  .l-main-img__copy {
    width: 486px;
  }

  .l-main-img__img {
    top: 74px;
    width: 324px;
    margin-left: auto;
    left: auto;
    right: -38px;
    transform: translateX(0);
  }
}

/* .l-sub-img
================================================ */
.l-sub-img {
  position: relative;
}

.l-sub-img__inner {
  padding-top: 165px;
}

.l-sub-img__head {
  width: 227px;
}

.l-sub-img__img {
  width: 326px;
  position: absolute;
  top: 33px;
  left: 50%;
  transform: translateX(calc(-50% + 18px));
  z-index: -1;
}

.l-sub-img__txt {
  font-size: 1.6rem;
}

.l-sub-img__btn {
  margin-top: 10px;
  width: 222px;
  height: 50px;
  border-radius: 28px;
  position: relative;
}

.l-sub-img__btn::before {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 28px;
  border: 4px solid #EFD200;
  filter: blur(3px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.l-sub-img__btn.hidariude::before {
  border: 4px solid #605EE4;
}

.l-sub-img__btn.food::before {
  border: 4px solid #DD2222;
}

.l-sub-img__btn.pr::before {
  border: 4px solid #FD9D1A;
}

.l-sub-img__btn.keiri::before {
  border: 4px solid #1FD4F5;
}

.l-sub-img__btn.movie::before {
  border: 4px solid #93DE64;
}

.l-sub-img__btn.school::before {
  border: 4px solid #FF0000;
}

.l-sub-img__btn.secretary::before {
  border: 4px solid #FF84FF;
}

.l-sub-img__btn a {
  font-size: 1.8rem;
  height: 100%;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(239, 202, 0, 1) 0%, rgba(219, 152, 0, 1) 65%, rgba(239, 202, 0, 1) 100%);
  border: 1px solid #fff;
  border-radius: 28px;
  position: relative;
}

.l-sub-img__btn.hidariude a {
  background: linear-gradient(180deg, rgba(61, 59, 213, 1) 0%, rgba(37, 37, 110, 1) 75%, rgba(50, 49, 144, 1) 100%);
}

.l-sub-img__btn.food a {
  background: linear-gradient(180deg, rgba(221, 34, 34, 1) 0%, rgba(207, 66, 66, 1) 75%, rgba(199, 34, 34, 1) 100%);
}

.l-sub-img__btn.pr a {
  background: linear-gradient(180deg, rgba(240, 142, 5, 1) 0%, rgba(247, 167, 54, 1) 75%, rgba(219, 128, 0, 1) 100%);
}

.l-sub-img__btn.keiri a {
  background: linear-gradient(180deg, rgba(0, 186, 219, 1) 0%, rgba(82, 209, 207, 1) 75%, rgba(0, 190, 196, 1) 100%);
}

.l-sub-img__btn.movie a {
  background: linear-gradient(180deg, rgba(76, 199, 0, 1) 0%, rgba(47, 214, 94, 1) 75%, rgba(75, 189, 4, 1) 100%);
}

.l-sub-img__btn.school a {
  background: linear-gradient(180deg, rgba(119, 30, 30, 1) 0%, rgba(69, 14, 14, 1) 75%, rgba(123, 33, 33, 1) 100%);
}

.l-sub-img__btn.secretary a {
  background: linear-gradient(180deg, rgba(255, 132, 255, 1) 0%, rgba(207, 35, 184, 1) 75%, rgba(148, 7, 117, 1) 100%);
}

@media all and (min-width: 768px) {
  .l-sub-img__inner {
    padding-top: 84px;
  }

  .l-sub-img__head {
    width: 251px;
  }

  .l-sub-img__img {
    top: 63px;
    width: 324px;
    left: auto;
    transform: translateX(0);
    right: -18px;
  }

  .l-sub-img__btn {
    margin-top: 15px;
    width: 216px;
    border-radius: 30px;
  }

  .l-sub-img__btn a {
    font-size: 1.8rem;
    border-radius: 30px;
    border-width: 2px;
  }

  .l-sub-img__btn a::before {
    border: none;
  }
}

.l-sub-img__btn.center {
  margin: 30px auto 0;
}

@media all and (min-width: 768px) {
  .l-sub-img__btn.center {
    margin-top: 40px;
  }
}

/* .form-list 
================================================ */
.form-list__inner {
  padding-top: 27px;
}

.form-list__tit {
  font-size: 2rem;
  margin-bottom: 10px;
}

.form-list__box {
  background-color: #fff;
  padding: 14px;
  color: #000;
  font-weight: 700;
  position: relative;
}

.form-list__box::before {
  content: "";
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  background: linear-gradient(132deg, rgba(239, 210, 0, 1) 0%, rgba(0, 0, 0, 1) 45%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(5px);
}

.form-list__box.hidariude::before {
  background: linear-gradient(122deg, rgba(96, 94, 228, 1) 0%, rgba(0, 0, 0, 1) 40%);
}

.form-list__box.food::before {
  background: linear-gradient(122deg, rgba(221, 34, 34, 1) 0%, rgba(0, 0, 0, 1) 40%);
}

.form-list__box.pr::before {
  background: linear-gradient(122deg, rgba(253, 157, 26, 1) 0%, rgba(0, 0, 0, 1) 40%);
}

.form-list__box.keiri::before {
  background: linear-gradient(122deg, rgba(31, 212, 245, 1) 0%, rgba(0, 0, 0, 1) 40%);
}

.form-list__box.movie::before {
  background: linear-gradient(122deg, rgba(147, 222, 100, 1) 0%, rgba(0, 0, 0, 1) 40%);
}

.form-list__box.school::before {
  background: linear-gradient(122deg, rgba(255, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 40%);
}

.form-list__box.secretary::before {
  background: linear-gradient(122deg, rgba(255, 132, 255, 1) 0%, rgba(0, 0, 0, 1) 40%);
}

.form-list__item::before {
  content: "・";
}

@media all and (min-width: 768px) {
  .form-list__inner {
    padding-top: 24px;
  }

  .form-list__box {
    padding: 20px 14px;
  }
}

/* .form-table 
================================================ */
.form-table__inner {
  padding-top: 28px;
}

.form-table__tit {
  font-size: 2rem;
  margin-bottom: 15px;
}

.form-table__table {
  border: 2px solid #fff;
  position: relative;
}

.form-table__table::before {
  content: "";
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  background: linear-gradient(132deg, rgba(239, 210, 0, 1) 0%, rgba(0, 0, 0, 1) 45%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(5px);
}

.form-table__table.hidariude::before {
  background: linear-gradient(122deg, rgba(96, 94, 228, 1) 0%, rgba(0, 0, 0, 1) 40%);
}

.form-table__table.food::before {
  background: linear-gradient(122deg, rgba(221, 34, 34, 1) 0%, rgba(0, 0, 0, 1) 40%);
}

.form-table__table.pr::before {
  background: linear-gradient(122deg, rgba(253, 157, 26, 1) 0%, rgba(0, 0, 0, 1) 40%);
}

.form-table__table.keiri::before {
  background: linear-gradient(122deg, rgba(31, 212, 245, 1) 0%, rgba(0, 0, 0, 1) 40%);
}

.form-table__table.movie::before {
  background: linear-gradient(122deg, rgba(147, 222, 100, 1) 0%, rgba(0, 0, 0, 1) 40%);
}

.form-table__table.school::before {
  background: linear-gradient(122deg, rgba(255, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 40%);
}

.form-table__table.secretary::before {
  background: linear-gradient(122deg, rgba(255, 132, 255, 1) 0%, rgba(0, 0, 0, 1) 40%);
}

.form-table__table::after {
  content: "";
  width: calc(79/335*100%);
  height: 100%;
  background: linear-gradient(180deg, rgba(96, 86, 14, 1) 0%, rgba(0, 0, 0, 1) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.form-table__table.hidariude::after {
  background: linear-gradient(180deg, rgba(39, 38, 147, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.form-table__table.food::after {
  background: linear-gradient(180deg, rgba(221, 34, 34, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.form-table__table.pr::after {
  background: linear-gradient(180deg, rgba(227, 132, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.form-table__table.keiri::after {
  background: linear-gradient(180deg, rgba(0, 167, 196, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.form-table__table.movie::after {
  background: linear-gradient(180deg, rgba(84, 166, 33, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.form-table__table.school::after {
  background: linear-gradient(180deg, rgba(111, 22, 22, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.form-table__table.secretary::after {
  background: linear-gradient(180deg, rgba(255, 132, 255, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.form-table__table th,
.form-table__table td {
  padding: 15px 10px;
  font-weight: 700;
  font-size: 1.4rem;

}

.form-table__table tr:not(:last-child) th,
.form-table__table tr:not(:last-child) td {
  border-bottom: 1px solid #EFD200;
}

.form-table__table.hidariude tr:not(:last-child) th,
.form-table__table.hidariude tr:not(:last-child) td {
  border-bottom: 1px solid #605EE4;
}

.form-table__table.food tr:not(:last-child) th,
.form-table__table.food tr:not(:last-child) td {
  border-bottom: 1px solid #DD2222;
}

.form-table__table.pr tr:not(:last-child) th,
.form-table__table.pr tr:not(:last-child) td {
  border-bottom: 1px solid #FD9D1A;
}

.form-table__table.keiri tr:not(:last-child) th,
.form-table__table.keiri tr:not(:last-child) td {
  border-bottom: 1px solid #1FD4F5;
}

.form-table__table.movie tr:not(:last-child) th,
.form-table__table.movie tr:not(:last-child) td {
  border-bottom: 1px solid #93DE64;
}

.form-table__table.school tr:not(:last-child) th,
.form-table__table.school tr:not(:last-child) td {
  border-bottom: 1px solid #FF0000;
}

.form-table__table.secretary tr:not(:last-child) th,
.form-table__table.secretary tr:not(:last-child) td {
  border-bottom: 1px solid #FF84FF;
}

.form-table__table th {
  width: calc(79/335*100%);
  text-align: left;
  vertical-align: middle;
}

.form-table__table td {
  background-color: #fff;
  color: #000;
}

.form-table__table td .list li::before {
  content: "・";
}

.form-table__table td .txt+.txt {
  margin-top: 1em;
}

@media all and (min-width: 768px) {

  .form-table__table::after {
    width: calc(126/561*100%);
  }

  .form-table__table th,
  .form-table__table td {
    padding: 16px 19px;
  }

  .form-table__table th {
    width: calc(126/561*100%);
  }
}

/* .form-area 
================================================ */
.form-area__inner {
  padding: 40px 0 0;
}

.form-area__frame {
  position: relative;
  height: calc(100vh - 30px);
}

.form-area__frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media all and (min-width: 768px) {
  .form-area__inner {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    max-width: 100vw;
  }
}

/* .home-links 
================================================ */
.home-links__inner {
  padding-bottom: 48px;
  line-height: 1.4;
}

.home-links__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.home-links__item {
  width: 100%;
  padding: 2px;
  position: relative;
}

.home-links__item::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(137deg, rgba(255, 46, 166, 1) 0%, rgba(0, 0, 0, 1) 55%);
  filter: blur(5px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.home-links__item::after {
  content: "";
  width: 8px;
  height: 9px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  bottom: 4px;
  right: 4px;
  z-index: 100;
  transform: rotate(-45deg);
}

.home-links__item-link {
  display: block;
  background-color: #fff;
  padding: 11px 14px;
  border: 2px solid #fff;
  position: relative;
  height: 100%;
  color: #000;
  clip-path: polygon(0 0, 100% 0, 100% 68%, 82% 100%, 0 100%);
  z-index: 10;
  filter: blur(0);
}

.home-links__item-tit {
  font-size: 1.6rem;
  font-weight: 700;
}

.home-links__item-txt {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

/* .home-links__item.item02 {
  box-shadow: 0 0 10px 0 #5EFF2E;
  border-color: #169100;
}

.home-links__item.item02 .home-links__item-link {
  box-shadow: 0 0 0 0.5px #169100 inset;
}

.home-links__item.item03 {
  box-shadow: 0 0 10px 0 #FF2E2E;
  border-color: #DD2222;
}

.home-links__item.item03 .home-links__item-link {
  box-shadow: 0 0 0 0.5px #DD2222 inset;
}

.home-links__item.item04 {
  box-shadow: 0 0 10px 0 #FF2EEF;
  border-color: #C607FF;
}

.home-links__item.item04 .home-links__item-link {
  box-shadow: 0 0 0 0.5px #C607FF inset;
}

.home-links__item.item05 {
  box-shadow: 0 0 10px 0 #FF9A10;
  border-color: #FD9D1A;
}

.home-links__item.item05 .home-links__item-link {
  box-shadow: 0 0 0 0.5px #FD9D1A inset;
}

.home-links__item.item06 {
  box-shadow: 0 0 10px 0 #20C8F0;
  border-color: #1FD4F5;
}

.home-links__item.item06 .home-links__item-link {
  box-shadow: 0 0 0 0.5px #1FD4F5 inset;
}

.home-links__item.item07 {
  box-shadow: 0 0 10px 0 #57FF64;
  border-color: #93DE64;
}

.home-links__item.item07 .home-links__item-link {
  box-shadow: 0 0 0 0.5px #93DE64 inset;
}

.home-links__item.item08 {
  box-shadow: 0 0 10px 0 #1720FF;
  border-color: #586CFF;
}

.home-links__item.item08 .home-links__item-link {
  box-shadow: 0 0 0 0.5px #586CFF inset;
}

.home-links__item.item09 {
  box-shadow: 0 0 10px 0 #FFAAF8;
  border-color: #FF84FF;
}

.home-links__item.item09 .home-links__item-link {
  box-shadow: 0 0 0 0.5px #FF84FF inset;
} */

@media all and (max-width: 767px) {}

@media all and (max-width: 389px) {
  .home-links__item-link {
    padding: 9px 9px 13px;
  }

  .home-links__item-txt {
    font-size: 1.1rem;
  }
}

@media all and (min-width: 768px) {
  .home-links__inner {
    padding: 0 0 93px;
  }

  .home-links__list {
    grid-template-columns: repeat(3, 1fr);
  }


  .home-links__item-link {
    display: block;
    background-color: #fff;
    padding: 11px 14px;
    border: 2px solid #fff;
    position: relative;
    height: 100%;
    color: #000;
    clip-path: polygon(0 0, 100% 0, 100% 68%, 84% 100%, 0 100%);
    z-index: 10;
    filter: blur(0);
  }


  .home-links__item-link {
    transition: all 0.3s ease;
    padding: 12px 14px 15px;
  }

  .home-links__item-link:hover {
    color: #5F1A42;
  }

  .home-links__item-tit {
    font-size: 1.8rem;
    margin-bottom: 3px;
  }
}