@charset "utf-8";


/* ---------------------------------------------------------
 * common
** --------------------------------------------------------- */
body {
  background-image: linear-gradient(to bottom, #F98271 80px, #FAD2C8 80px);
  background-attachment: fixed;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Segoe UI", Frutige, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
:root {
  --vw: 1vw;
  --pri-color: #F98271;
  --pri-gra: linear-gradient(90deg, #FF965A 0%, #FF8370 100%);
  --sec-gra: linear-gradient(90deg, #FF965A -15.43%, #FF8370 -15.29%);
}


/* --------------- .bg-gra --------------- */
.bg-gra {
  background-image: var(--pri-gra);
}
.pri-color {
  color: var(--pri-color);
}




/* --------------- .wrapper --------------- */
.wrapper {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin-inline: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 959px) {
  .wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 519px) {
}



/* --------------- form --------------- */
input[type="text"]:focus {
  outline: none;
  background-color: #ffffe0 !important;
}

/* --------------- error-message --------------- */
.error-message {
  color: #b50007;
  margin-top: 6px;
}

/* --------------- flash_message --------------- */
.flash_message {
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: 10px 4px;
  margin-bottom: 20px;
  padding: 10px 10px 10px 10px;
  text-align: left;
}
.flash_message.error {
  background-color: #f9e5e6;
  border: 1px solid #e8aaad;
  color: #b50007;
}
.flash_message.success {
  background-color: #e5ecf9;
  border: 1px solid #aac6e8;
  color: #0055b5;
}
.flash_message.info {
  background-color: #e9f9e5;
  border: 1px solid #b4e8aa;
  color: #1c8400;
}
.flash_message.notice {
  background-color: #f9f9e5;
  border: 1px solid #e8e3aa;
  color: #828400;
}



/* ---------------------------------------------------------
 * #pc_left #pc_right
** --------------------------------------------------------- */
.bg_left,
.bg_right {
  position: fixed;
  z-index: 1;
  bottom: 0;
  opacity: 0.5;
  max-width: 50%;
}
.bg_left {
  left: 0;
}
.bg_right {
  right: 0;
}
/* #pc_left */
#pc_left {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(calc(100% - 375px) / 2);
  height: 100dvh;
  padding-bottom: 20px;
  overflow: auto;
}
#pc_left .pc_sub_header {
  position: absolute;
  left: 0;
  top: 10px;
  display: block;
  width: 100%;
  padding: 0 30px;
  color: #fff;
}
#pc_left .pc_sub_header .desc {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
}
#pc_left .pc_sub_header img {
  width: 200px;
}
#pc_left .pc_sub_header .area {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  border-radius: 10px;
  border: 1px solid;
  font-size: 14px;
  font-weight: bold;
}
#pc_left .contents {
  padding: 0 20px;
  text-align: center;
}
#pc_left .catch {
}
#pc_left .catch img {
  max-width: 80%;
}
#pc_left .catch .catch_txt {
  max-width: 100%;
  margin-top: 20px;
}
#pc_left .search {
  margin-top: 30px;
}
#pc_left .search .content {
  display: flex;
  max-width: 350px;
  width: 100%;
  margin-inline: auto;
}
#pc_left .search input {
  width: calc(100% - 80px);
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 5px 0 0 5px;
  text-align: left;
}
#pc_left .search button {
  width: 80px;
  border: 1px solid;
  background-color: var(--pri-color);
  border-radius: 0 5px 5px 0;
  color: #fff;
}
#pc_left .links {
  display: flex;
  justify-content: space-between;
  max-width: 350px;
  width: 100%;
  margin-inline: auto;
  margin-top: 20px;
}
#pc_left .links a {
  display: block;
  width: calc(50% - 10px);
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
}
#pc_left .links img {
  margin-bottom: 5px;
}
#pc_left .links span {
  font-size: 18px;
}
/* #pc_right */
#pc_right {
  position: fixed;
  z-index: 1;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(calc(100% - 375px) / 2);
  height: 100dvh;
  padding-top: 40px;
  padding-bottom: 20px;
  overflow: auto;
}
#pc_right .pc_sub_header {
  position: absolute;
  right: 0;
  top: 15px;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  width: 100%;
  padding: 0 30px;
}
#pc_right .pc_sub_header a {
  color: #fff;
  text-align: center;
}
#pc_right .pc_sub_header img {
  height: 22px;
}
#pc_right .pc_sub_header span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
}
#pc_right .contents {
  padding: 0 20px;
  text-align: center;
}
#pc_right .catch {
}
#pc_right .catch img {
  max-width: 60%;
}
#pc_right .catch .catch_txt {
  max-width: 100%;
  margin-top: 20px;
}
#pc_right .line_btn {
  max-width: 350px;
  width: 100%;
  margin-top: 20px;
  margin-inline: auto;
}
#pc_right .line_btn a {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #33c855;
  border: 1px solid;
  border-radius: 100px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 2px;
}
#pc_right .line_btn a img {
  width: 27px;
  margin-right: 10px;
}
#pc_right .line_btn a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  display: block;
  width: 11px;
  height: 11px;
  margin-top: auto;
  margin-bottom: auto;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
}
#pc_right .sns_btns {
  display: flex;
  justify-content: space-between;
  max-width: 250px;
  width: 100%;
  margin-top: 50px;
  margin-inline: auto;
}
#pc_right .sns_btns li {
  width: 22%;
}
#pc_right .sns_btns a {
}
#pc_right .sns_btns img {
  width: 100%;
  aspect-ratio: 1;
}
@media (max-width: 959px) {
  #pc_left,
  #pc_right {
    display: none;
  }
}
@media (max-width: 519px) {
}




/* ---------------------------------------------------------
 * #main
** --------------------------------------------------------- */
#main {
  position: relative;
  z-index: 3;
  max-width: 375px;
/*  width: calc(37500% / 1270);*/
  width: 100%;
  margin: 15px auto;
  background-color: #F2F2F2;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
@media (max-width: 959px) {
  #main {
    margin-right: auto;
  }
}
@media (max-width: 519px) {
  #main {
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 0;
  }
}


/* ---------- #header ---------- */
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 15px 10px;
  background-color: #fff;
}
#header .h_left {
}
#header .desc {
  font-size: 10px;
}
#header .logo {
}
#header .logo img {
  width: 148px;
}
#header .logo span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  padding-left: 8px;
  padding-right: 8px;
  margin-left: 8px;
  border: 1px solid;
  border-radius: 5px;
  color: var(--pri-color);
  font-size: 10px;
  font-weight: bold;
}
#header .h_right {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
}
#header a {
}
#header a img {
  height: 24px;
}
#header a span {
  display: block;
  margin-top: 2px;
  color: var(--pri-color);
  font-size: 12px;
}


/* ---------- .main_wrapper ---------- */
.main_wrapper {
  padding-inline: 10px;
}

h2 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
}

.lead {
  margin-top: 10px;
  margin-bottom: 10px;
}

.select_wrapper {
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
  overflow: hidden;
}
.select_wrapper::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 5px;
  right: 10px;
  display: block;
  width: 7px;
  height: 7px;
  margin-top: auto;
  margin-bottom: auto;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  transform: rotate(45deg);
}
.select_wrapper select {
  position: relative;
  z-index: 2;
  padding: 10px 30px 10px 10px;
  cursor: pointer;
}


/* ---------- #footer_line ---------- */
#footer_line {
  margin-top: 40px;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #fff;
  text-align: center;
}
#footer_line a {
  position: relative;
  display: inline-block;
  max-width: 100%;
  width: 250px;
  padding: 10px;
  background-color: #33c855;
  border-radius: 100px;
  color: #fff;
  letter-spacing: 2px;
}
#footer_line a img {
  width: 27px;
  margin-right: 10px;
}
#footer_line a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  display: block;
  width: 7px;
  height: 7px;
  margin-top: auto;
  margin-bottom: auto;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
}


/* ---------- #footer ---------- */
#footer {
  background-image: var(--sec-gra);
  color: #fff;
  text-align: center;
}

/* .links */
#footer .links {
}
#footer .links ul {
  display: flex;
  flex-wrap: wrap;
}
#footer .links li {
  width: 50%;
  border-bottom: 1px solid;
}
#footer .links li:nth-child(2n+1) {
  border-right: 1px solid;
}
#footer .links a {
  display: block;
  padding: 15px 0;
  font-size: 14px;
}

/* .main */
#footer .main {
}
#footer .logo {
  margin-top: 30px;
}
#footer .logo img {
  width: 80px;
}
#footer .copy {
  padding: 10px 0;
  font-size: 10px;
}




/* ---------------------------------------------------------
 * pager
** --------------------------------------------------------- */
ul.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
}
ul.pagination span,
ul.pagination a {
  display: block;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  color: #000;
  font-size: 13px;
  padding: 6px 12px;
  transition: all ease 0.3s;
}
ul.pagination span:hover,
ul.pagination a:hover{
  background-color: var(--pri-color);
  color: #fff;
  text-decoration: none;
}
ul.pagination span.current {
  background-color: var(--pri-color);
  color: #fff;
}