@charset "UTF-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
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;
}

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: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;
}

:root {
  --font_gothic:
  	"Noto Sans JP",
  	"Hiragino Kaku Gothic ProN",
  	"Hiragino Sans",
  	"BIZ UDPGothic",
  	"Meiryo",
  	"Arial",
  	sans-serif;
  --text_color: #333;
  --logo_blue: #517FC1;
  --logo_yellow: #EBBF27;
  --link_blue: #1a828a;
  --link_orange: #c45115;
  --blue: #0055B4;
  --dark_blue: #31363E;
  --navy: #0D2B5A;
  --red01: #C15151;
  --member_red: #B72323;
  --bg_gray: #FAFAFA;
  --gray: #707070;
  --input_bg: #EAEAEA;
  --orange: #D55A19;
  --contents_width: 1200px;
  --detail_width: 1200px;
}

/************************************************

	基本

*************************************************/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
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,
input,
select,
textarea,
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 {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--font_gothic);
  line-height: 1.75;
  font-size: 1.6em;
  color: var(--text_color);
  position: relative;
}

button:focus-visible,
a:focus-visible {
  outline: none;
  box-shadow: 0px 0px 0px 3px #000, 0px 0px 0px 5px #fff;
}

input,
textarea {
  font-size: 1.6rem;
  font-family: var(--font_gothic);
}
input:focus-visible,
textarea:focus-visible {
  box-shadow: 0px 0px 0px 1px #fff inset, 0px 0px 0px 3px #333 inset;
}

select {
  font-size: 1.6rem;
}
select:invalid {
  color: #bbb;
}

ul {
  list-style: none;
}

:where(a), :where(a):link, :where(a):active, :where(a):visited, :where(a):hover {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  border-radius: 0;
  background: none;
  font: inherit;
  padding: 0;
  cursor: pointer;
  text-transform: inherit;
  text-decoration: none;
  color: inherit;
}

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

/************************************************

	block

*************************************************/
.b-containter .b-containter__inner {
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .b-containter .b-containter__inner {
    padding: 0 15px;
  }
}

.b-unit_2col01 {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.b-unit_2col01 > .b-unit_2col01__unit {
  width: 49%;
}
.b-unit_2col01 > .b-unit_2col01__unit:nth-child(odd) {
  margin-right: 2%;
}
.b-unit_2col01 > .b-unit_2col01__unit:nth-child(n+3) {
  margin-top: 2%;
}

.b-unit_2col02 {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.b-unit_2col02 > .b-unit_2col02__unit {
  width: 100%;
}
.b-unit_2col02 > .b-unit_2col02__unit:nth-child(odd) {
  margin-right: 2%;
}
@media screen and (max-width: 768px) {
  .b-unit_2col02 > .b-unit_2col02__unit:nth-child(odd) {
    margin-right: 0;
  }
}
.b-unit_2col02 > .b-unit_2col02__unit:nth-child(n+3) {
  margin-top: 2%;
}
@media screen and (max-width: 768px) {
  .b-unit_2col02 > .b-unit_2col02__unit:nth-child(n+2) {
    margin-top: 2%;
  }
}

.b-pc_login_box {
  position: fixed;
  top: 150px;
  right: 0;
  z-index: 5;
  transform: translateX(300px);
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .b-pc_login_box {
    display: none;
  }
}
.b-pc_login_box.is-open {
  transform: translateX(0);
}
.b-pc_login_box .b-pc_login_box__inner {
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
}
.b-pc_login_box .b-pc_login_box__form {
  width: 300px;
  padding: 20px 30px 25px;
  color: var(--text_color);
  background: #f6f6f6;
  border: 1px solid #ccc;
}
.b-pc_login_box .b-pc_login_box__btn {
  writing-mode: vertical-rl;
  background: var(--logo_blue);
  color: #fff;
  padding: 30px 10px;
}
.b-pc_login_box .b-pc_login_box__label {
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
}
.b-pc_login_box .b-pc_login_box__label:not(:first-of-type) {
  margin-top: 10px;
}
.b-pc_login_box .b-pc_login_box__input {
  margin-top: 5px;
}
.b-pc_login_box .b-pc_login_box__text {
  font-size: 1.4rem;
  margin-top: 5px;
  text-align: center;
}
.b-pc_login_box .b-btn01 {
  margin-top: 20px;
}
.b-pc_login_box .b-btn01 + .b-btn01 {
  margin-top: 10px;
}

.b-sp_login_box.is-open {
  transform: translateX(0);
}
.b-sp_login_box .b-sp_login_box__form {
  width: 300px;
  padding: 20px 30px 25px;
  color: var(--text_color);
  background: #f6f6f6;
  border: 1px solid #ccc;
}
.b-sp_login_box .b-sp_login_box__btn {
  writing-mode: vertical-rl;
  background: var(--logo_blue);
  color: #fff;
  padding: 30px 10px;
}
.b-sp_login_box .b-sp_login_box__label {
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
}
.b-sp_login_box .b-sp_login_box__label:not(:first-of-type) {
  margin-top: 10px;
}
.b-sp_login_box .b-sp_login_box__input {
  margin-top: 5px;
}
.b-sp_login_box .b-sp_login_box__text {
  font-size: 1.4rem;
  margin-top: 5px;
  text-align: center;
}
.b-sp_login_box .b-btn01 {
  margin-top: 20px;
}
.b-sp_login_box .b-btn01 + .b-btn01 {
  margin-top: 10px;
}

.b-tags {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.b-tags li {
  margin-right: 20px;
  font-weight: bold;
  font-size: 1.4rem;
  color: var(--blue);
}
.b-tags li:last-of-type {
  margin-right: 0;
}
.b-tags li a {
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .b-tags li a:hover {
    opacity: 0.7;
  }
}

.b-tag_folder {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .b-tag_folder {
    margin-top: 15px;
  }
}
.b-tag_folder .b-tag_folder__title {
  font-size: 2rem;
  padding-top: 10px;
  border-top: 1px solid;
}
@media screen and (max-width: 768px) {
  .b-tag_folder .b-tag_folder__title {
    font-size: 1.6rem;
  }
}

.b-cards01 {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.b-cards01 .b-cards01__card {
  width: 23%;
  margin-right: 2.66%;
}
@media screen and (max-width: 768px) {
  .b-cards01 .b-cards01__card {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-right: 0;
  }
}
.b-cards01 .b-cards01__card:nth-child(4n) {
  margin-right: 0;
}
.b-cards01 .b-cards01__card:nth-child(n+5) {
  margin-top: 3%;
}
@media screen and (max-width: 768px) {
  .b-cards01 .b-cards01__card:nth-child(n+5) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .b-cards01 .b-cards01__card + .b-cards01__card {
    margin-top: 20px;
    border-top: 1px solid #ccc;
    padding-top: 25px;
  }
}
.b-cards01 .b-cards01__card > a {
  display: block;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .b-cards01 .b-cards01__card > a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .b-cards01 .b-card__thmbnail {
    width: 32%;
    order: 2;
  }
}
.b-cards01 .b-card__thmbnail a {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 7px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .b-cards01 .b-card__thmbnail a {
    display: -webkit-flex;
    display: flex;
    flex-direction: column-reverse;
  }
}
.b-cards01 .b-card__thmbnail figure {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 7px;
  overflow: hidden;
}
.b-cards01 .b-card__thmbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.b-cards01 .b-card__thmbnail .b-cards01__status {
  position: absolute;
  top: 10px;
  left: 0;
  background: var(--blue);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  z-index: 1;
  padding: 3px 20px 3px 10px;
  text-align: center;
  min-width: 120px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}
@media screen and (max-width: 520px) {
  .b-cards01 .b-card__thmbnail .b-cards01__status {
    position: static;
    padding: 3px 10px;
    width: 100%;
    clip-path: none;
    min-width: inherit;
    font-size: 1.2rem;
    top: auto;
    bottom: 0;
  }
}
.b-cards01 .b-card__thmbnail .b-cards01__status.b-cards01__status--end {
  background: var(--orange);
}
@media screen and (max-width: 768px) {
  .b-cards01 .b-cards01__sp_col {
    width: 65%;
    order: 1;
  }
}
.b-cards01 .b-cards01__head {
  margin-top: 5px;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 768px) {
  .b-cards01 .b-cards01__head {
    margin-top: 0;
  }
}
.b-cards01 .b-cards01__head .b-btn_favorite {
  margin-top: 7px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .b-cards01 .b-cards01__head .b-btn_favorite {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
.b-cards01 .b-cards01__categories {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .b-cards01 .b-cards01__categories {
    margin-top: -5px;
  }
}
.b-cards01 .b-cards01__categories li {
  margin-right: 10px;
  margin-top: 5px;
}
.b-cards01 .b-cards01__title {
  margin-top: 7px;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .b-cards01 .b-cards01__title {
    font-size: 1.6rem;
  }
}
.b-cards01 .b-cards01__text {
  margin-top: 10px;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .b-cards01 .b-cards01__text {
    font-size: 1.3rem;
  }
}
.b-cards01 .b-tags {
  margin-top: 15px;
}

@media screen and (max-width: 1070px) {
  .b-cards02 {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .b-cards02 {
    display: block;
  }
}
@media screen and (max-width: 1070px) {
  .b-cards02 .b-cards02__card {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  .b-cards02 .b-cards02__card {
    width: 100%;
  }
}
.b-cards02 .b-cards02__card + .b-cards02__card {
  margin-top: 25px;
}
@media screen and (max-width: 1070px) {
  .b-cards02 .b-cards02__card + .b-cards02__card {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .b-cards02 .b-cards02__card + .b-cards02__card {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #fff;
  }
}
@media screen and (max-width: 1070px) {
  .b-cards02 .b-cards02__card:nth-child(2n-1) {
    margin-right: 4%;
  }
}
@media screen and (max-width: 768px) {
  .b-cards02 .b-cards02__card:nth-child(2n-1) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1070px) {
  .b-cards02 .b-cards02__card:nth-child(n+3) {
    margin-top: 4%;
  }
}
@media screen and (max-width: 768px) {
  .b-cards02 .b-cards02__card:nth-child(n+3) {
    margin-top: 15px;
  }
}
.b-cards02 .b-cards02__card > a {
  display: block;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .b-cards02 .b-cards02__card > a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .b-cards02 .b-cards02__card > a {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
  }
}
.b-cards02 .b-cards02__thumbnail {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .b-cards02 .b-cards02__thumbnail {
    width: 32%;
    padding-bottom: 18%;
    height: 0;
    order: 2;
    border-radius: 5px;
  }
}
.b-cards02 .b-cards02__thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.b-cards02 .b-cards02__title {
  margin-top: 5px;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .b-cards02 .b-cards02__title {
    width: 65%;
    margin-top: 0;
    order: 1;
  }
}

.b-cards03 {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .b-cards03 {
    display: block;
  }
}
.b-cards03 .b-cards03__card {
  width: 23%;
  margin-right: 2.66%;
}
@media screen and (max-width: 768px) {
  .b-cards03 .b-cards03__card {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    margin-right: 0;
  }
}
.b-cards03 .b-cards03__card > a {
  display: block;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .b-cards03 .b-cards03__card > a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .b-cards03 .b-cards03__card + .b-cards03__card {
    margin-top: 15px;
    border-top: 1px solid #ccc;
    padding-top: 15px;
  }
}
.b-cards03 .b-cards03__card:nth-child(4n) {
  margin-right: 0;
}
.b-cards03 .b-cards03__card:nth-child(n+5) {
  margin-top: 3%;
}
@media screen and (max-width: 768px) {
  .b-cards03 .b-cards03__card:nth-child(n+5) {
    margin-top: 15px;
  }
}
.b-cards03 .b-cards03__thumbnail {
  position: relative;
}
@media screen and (max-width: 768px) {
  .b-cards03 .b-cards03__thumbnail {
    width: 32%;
    order: 2;
    border-radius: 5px;
  }
}
.b-cards03 .b-cards03__thumbnail > a {
  display: block;
}
@media screen and (max-width: 768px) {
  .b-cards03 .b-cards03__thumbnail > a {
    display: flex;
    flex-direction: column-reverse;
  }
}
.b-cards03 .b-cards03__thumbnail .b-cards03__status {
  position: absolute;
  top: 10px;
  left: 0;
  background: var(--blue);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  z-index: 1;
  padding: 3px 20px 3px 10px;
  text-align: center;
  min-width: 120px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}
@media screen and (max-width: 520px) {
  .b-cards03 .b-cards03__thumbnail .b-cards03__status {
    position: static;
    padding: 3px 10px;
    width: 100%;
    clip-path: none;
    min-width: inherit;
    font-size: 1.2rem;
    top: auto;
    bottom: 0;
  }
}
.b-cards03 .b-cards03__thumbnail .b-cards03__status.b-cards03__status--end {
  background: var(--orange);
}
.b-cards03 .b-cards03__thumbnail figure {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 7px;
  overflow: hidden;
}
.b-cards03 .b-cards03__thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .b-cards03 .b-cards03__textbox {
    width: 65%;
  }
}
.b-cards03 .b-cards03__textbox > a {
  display: block;
}
.b-cards03 .b-cards03__title {
  margin-top: 5px;
  font-weight: bold;
  line-height: 1.6;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .b-cards03 .b-cards03__title {
    margin-top: 0;
  }
}
.b-cards03 .b-cards03__footer {
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
}
.b-cards03 .b-cards03__footer .b-tags {
  margin-right: 20px;
}
.b-cards03 .b-cards03__footer .b-btn_favorite {
  margin-left: auto;
  margin-bottom: 1px;
}
.b-cards03 .b-cards03__categories {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .b-cards03 .b-cards03__categories {
    margin-top: -5px;
    margin-bottom: 5px;
  }
}
.b-cards03 .b-cards03__categories li {
  margin-right: 10px;
  margin-top: 5px;
}

.b-cards04 {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 2%;
}
@media screen and (max-width: 768px) {
  .b-cards04 {
    gap: 10px 2%;
  }
}
.b-cards04 .b-cards04__card {
  width: 32%;
}
@media screen and (max-width: 768px) {
  .b-cards04 .b-cards04__card {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .b-cards04 .b-cards04__card + .b-cards04__card {
    margin-top: 20px;
    border-top: 1px solid #ccc;
    padding-top: 25px;
  }
}
.b-cards04 .b-cards04__card > a {
  display: block;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .b-cards04 .b-cards04__card > a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .b-cards04 .b-card__thmbnail {
    width: 32%;
    order: 2;
  }
}
.b-cards04 .b-card__thmbnail a {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 7px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .b-cards04 .b-card__thmbnail a {
    display: -webkit-flex;
    display: flex;
    flex-direction: column-reverse;
  }
}
.b-cards04 .b-card__thmbnail figure {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 7px;
  overflow: hidden;
}
.b-cards04 .b-card__thmbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.b-cards04 .b-card__thmbnail .b-cards04__status {
  position: absolute;
  top: 10px;
  left: 0;
  background: var(--blue);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  z-index: 1;
  padding: 3px 20px 3px 10px;
  text-align: center;
  min-width: 120px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}
@media screen and (max-width: 520px) {
  .b-cards04 .b-card__thmbnail .b-cards04__status {
    position: static;
    padding: 3px 10px;
    width: 100%;
    clip-path: none;
    min-width: inherit;
    font-size: 1.2rem;
    top: auto;
    bottom: 0;
  }
}
.b-cards04 .b-card__thmbnail .b-cards04__status.b-cards04__status--end {
  background: var(--orange);
}
@media screen and (max-width: 768px) {
  .b-cards04 .b-cards04__sp_col {
    width: 65%;
    order: 1;
  }
}
.b-cards04 .b-cards04__head {
  margin-top: 10px;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 768px) {
  .b-cards04 .b-cards04__head {
    margin-top: 0;
  }
}
.b-cards04 .b-cards04__head .b-btn_favorite {
  margin-top: 7px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .b-cards04 .b-cards04__head .b-btn_favorite {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
.b-cards04 .b-cards04__categories {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .b-cards04 .b-cards04__categories {
    margin-top: -5px;
  }
}
.b-cards04 .b-cards04__categories li {
  margin-right: 10px;
  margin-top: 5px;
}
.b-cards04 .b-cards04__title {
  margin-top: 7px;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .b-cards04 .b-cards04__title {
    font-size: 1.6rem;
  }
}
.b-cards04 .b-cards04__text {
  margin-top: 10px;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .b-cards04 .b-cards04__text {
    font-size: 1.3rem;
  }
}
.b-cards04 .b-tags {
  margin-top: 15px;
}

.b-cards05 .b-cards05__card {
  display: flex;
  background: #fff;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .b-cards05 .b-cards05__card {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-right: 0;
  }
}
.b-cards05 .b-cards05__card + .b-cards05__card {
  margin-top: 10px;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}
.b-cards05 .b-cards05__card > a {
  display: block;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .b-cards05 .b-cards05__card > a:hover {
    opacity: 0.7;
  }
}
.b-cards05 .b-card__thmbnail {
  width: 31%;
  flex-shrink: 0;
  margin-top: 5px;
  margin-right: 4%;
}
@media screen and (max-width: 768px) {
  .b-cards05 .b-card__thmbnail {
    width: 32%;
    margin-right: 0;
    order: 2;
  }
}
.b-cards05 .b-card__thmbnail a {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 1070px) {
  .b-cards05 .b-card__thmbnail a {
    border-radius: 7px;
  }
}
@media screen and (max-width: 768px) {
  .b-cards05 .b-card__thmbnail a {
    display: -webkit-flex;
    display: flex;
    flex-direction: column-reverse;
  }
}
.b-cards05 .b-card__thmbnail figure {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 7px;
  overflow: hidden;
}
.b-cards05 .b-card__thmbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.b-cards05 .b-card__thmbnail .b-cards05__status {
  position: absolute;
  top: 5px;
  left: 0;
  background: var(--blue);
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  z-index: 1;
  padding: 3px 20px 3px 10px;
  text-align: center;
  min-width: 0;
  clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}
@media screen and (max-width: 1240px) {
  .b-cards05 .b-card__thmbnail .b-cards05__status {
    min-width: 0;
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 1070px) {
  .b-cards05 .b-card__thmbnail .b-cards05__status {
    min-width: 120px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 520px) {
  .b-cards05 .b-card__thmbnail .b-cards05__status {
    position: static;
    padding: 3px 10px;
    width: 100%;
    clip-path: none;
    min-width: inherit;
    font-size: 1.2rem;
    top: auto;
    bottom: 0;
  }
}
.b-cards05 .b-card__thmbnail .b-cards05__status.b-cards05__status--end {
  background: var(--orange);
}
@media screen and (max-width: 768px) {
  .b-cards05 .b-cards05__sp_col {
    width: 65%;
    order: 1;
  }
}
.b-cards05 .b-cards05__head {
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 768px) {
  .b-cards05 .b-cards05__head {
    margin-top: 0;
  }
}
.b-cards05 .b-cards05__head .b-btn_favorite {
  margin-top: 5px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .b-cards05 .b-cards05__head .b-btn_favorite {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
.b-cards05 .b-cards05__categories {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  column-gap: 5px;
}
.b-cards05 .b-cards05__categories li {
  margin-right: 0;
  margin-top: 0;
}
.b-cards05 .b-cards05__title {
  margin-top: 7px;
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (min-width: 1071px) {
  .b-cards05 .b-cards05__title {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .b-cards05 .b-cards05__title {
    font-size: 1.6rem;
  }
}
.b-cards05 .b-cards05__text {
  font-size: 1.4rem;
}
@media screen and (min-width: 1071px) {
  .b-cards05 .b-cards05__text {
    margin-top: 5px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .b-cards05 .b-cards05__text {
    font-size: 1.3rem;
  }
}
.b-cards05 .b-tags {
  margin-top: 10px;
}
@media screen and (min-width: 1071px) {
  .b-cards05 .b-tags li {
    font-size: 1rem;
    margin-right: 10px;
  }
}
@media screen and (min-width: 1071px) {
  .b-cards05 .b-btn_category a {
    font-size: 1rem;
    padding: 1px 10px;
  }
}
.b-cards05 .b-btn_favorite button {
  font-size: 1rem;
}
.b-cards05 .b-btn_favorite svg {
  width: 22px;
}

.b-timeline01 {
  margin: 0 auto;
  max-width: var(--contents_width);
}
.b-timeline01 .b-timeline01__line {
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 768px) {
  .b-timeline01 .b-timeline01__line {
    display: block;
    position: relative;
  }
}
.b-timeline01 .b-timeline01__line + .b-timeline01__line {
  margin-top: 55px;
}
@media screen and (max-width: 768px) {
  .b-timeline01 .b-timeline01__line + .b-timeline01__line {
    margin-top: 20px;
    border-top: 1px solid #ccc;
    padding-top: 20px;
  }
}
.b-timeline01 .b-timeline01__col_l {
  flex-shrink: 0;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .b-timeline01 .b-timeline01__col_l {
    display: -webkit-flex;
    display: flex;
  }
}
.b-timeline01 .b-timeline01__col_r > a {
  display: block;
}
.b-timeline01 .b-timeline01__date {
  font-weight: bold;
}
.b-timeline01 .b-timeline01__categories {
  display: -webkit-flex;
  display: flex;
}
.b-timeline01 .b-timeline01__categories > li {
  margin-right: 10px;
}
.b-timeline01 .b-timeline01__title {
  margin-top: 15px;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .b-timeline01 .b-timeline01__title {
    font-size: 1.6rem;
    margin-top: 9px;
  }
}
.b-timeline01 .b-timeline01__text {
  margin-top: 15px;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .b-timeline01 .b-timeline01__text {
    font-size: 1.3rem;
    margin-top: 9px;
  }
}
.b-timeline01 .b-timeline01__log {
  margin-top: 15px;
  font-size: 1.3rem;
}
.b-timeline01 .b-btn_favorite {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .b-timeline01 .b-btn_favorite {
    margin-top: 0;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
.b-timeline01 .b-tags {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .b-timeline01 .b-tags {
    margin-right: 60px;
  }
}

.b-timeline02 .b-timeline02__line + .b-timeline02__line {
  margin-top: 20px;
  border-top: 1px solid #fff;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .b-timeline02 .b-timeline02__line + .b-timeline02__line {
    margin-top: 10px;
    padding-top: 10px;
  }
}
.b-timeline02 .b-timeline02__line > a {
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .b-timeline02 .b-timeline02__line > a:hover {
    opacity: 0.7;
  }
}
.b-timeline02 .b-timeline02__date {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .b-timeline02 .b-timeline02__date {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .b-timeline02 .b-timeline02__title {
    font-size: 1.3rem;
  }
}

.b-under_head {
  background: var(--blue);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .b-under_head {
    padding: 30px 15px;
  }
}
.b-under_head .b-under_head__title {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .b-under_head .b-under_head__title {
    font-size: 2.2rem;
  }
}

.b-under_title {
  font-size: 2.4rem;
  max-width: var(--contents_width);
  margin: 0 auto 30px;
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
}
@media screen and (max-width: 768px) {
  .b-under_title {
    font-size: 1.8rem;
  }
}

.b-breadcrumbs {
  margin-top: 5px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .b-breadcrumbs {
    padding: 0 15px;
  }
}
.b-breadcrumbs > ul {
  max-width: var(--contents_width);
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.b-breadcrumbs > ul > li {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .b-breadcrumbs > ul > li {
    font-size: 1.2rem;
  }
}
.b-breadcrumbs > ul > li:not(:last-of-type) {
  position: relative;
  padding-right: 15px;
  margin-right: 15px;
}
.b-breadcrumbs > ul > li:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #aaa;
  border-right: 2px solid #aaa;
  position: absolute;
  top: 51%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}
.b-breadcrumbs > ul > li > a {
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .b-breadcrumbs > ul > li > a:hover {
    opacity: 0.7;
  }
}

.b-pagenation {
  margin: 0 auto;
  max-width: var(--contents_width);
}
.b-pagenation > ul {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .b-pagenation > ul {
    gap: 10px;
    padding: 0 15px;
  }
}
.b-pagenation > ul > li > a {
  min-width: 44px;
  line-height: 1.2;
  padding: 11px 5px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray);
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}
@media screen and (max-width: 768px) {
  .b-pagenation > ul > li > a {
    padding: 8px 5px;
    min-width: 34px;
    font-size: 1.4rem;
  }
}
@media (any-hover: hover) {
  .b-pagenation > ul > li > a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
  }
  .b-pagenation > ul > li > a:hover .b-pagenation__arrow_l::before,
  .b-pagenation > ul > li > a:hover .b-pagenation__arrow_r::before {
    border-color: #fff;
  }
}
.b-pagenation > ul > li > a.is-current {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.b-pagenation .b-pagenation__text {
  min-width: 90px;
}
@media screen and (max-width: 768px) {
  .b-pagenation .b-pagenation__text {
    min-width: 70px;
  }
}
.b-pagenation .b-pagenation__arrow_l,
.b-pagenation .b-pagenation__arrow_r {
  position: relative;
}
.b-pagenation .b-pagenation__arrow_l::before,
.b-pagenation .b-pagenation__arrow_r::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 52%;
  border-top: 2px solid #888;
  transition: border-color 0.3s;
}
.b-pagenation .b-pagenation__arrow_l {
  padding-left: 15px;
}
.b-pagenation .b-pagenation__arrow_l::before {
  border-left: 2px solid #888;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
}
.b-pagenation .b-pagenation__arrow_r {
  padding-right: 15px;
}
.b-pagenation .b-pagenation__arrow_r::before {
  border-right: 2px solid #888;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}

.b-hover_line {
  background: linear-gradient(transparent 95%, currentColor 95%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s;
}
@media (any-hover: hover) {
  .b-hover_line:hover {
    background-size: 100% 100%;
  }
}

@media (any-hover: hover) {
  .b-hover_box:hover .b-hover_box__underline {
    background-size: 100% 100%;
  }
}
.b-hover_box .b-hover_box__underline {
  background: linear-gradient(transparent 95%, currentColor 95%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s;
}

/************************************************

	JaveScript

*************************************************/
.js-hover_box .js-hover_box__underline {
  background: linear-gradient(transparent 95%, currentColor 95%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s;
}
.js-hover_box .js-hover_box__img {
  transition: transform 0.3s;
}
.js-hover_box.is-hover .js-hover_box__underline {
  background-size: 100% 100%;
}
.js-hover_box.is-hover .js-hover_box__img {
  transform: scale(1.1);
}

/************************************************

	bottom

*************************************************/
.b-btn_category a {
  font-size: 1.4rem;
  line-height: 1.5;
  background: var(--blue);
  color: #fff;
  padding: 3px 15px;
  display: inline-block;
  border-radius: 100vh;
  border: 1px solid var(--blue);
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}
@media screen and (max-width: 768px) {
  .b-btn_category a {
    font-size: 1.2rem;
  }
}
@media (any-hover: hover) {
  .b-btn_category a:hover {
    color: var(--blue);
    background: none;
  }
}
.b-btn_category.b-btn_category--member_only a {
  border-color: var(--member_red);
  background: var(--member_red);
}
@media (any-hover: hover) {
  .b-btn_category.b-btn_category--member_only a:hover {
    color: #fff;
    cursor: default;
  }
}

.b-btn_favorite button {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  color: var(--member_red);
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
@media (any-hover: hover) {
  .b-btn_favorite button:hover .b-btn_favorite__ico {
    transform: scale(1.1);
  }
}
.b-btn_favorite button:active .b-btn_favorite__ico {
  transform: scale(1.3);
}
.b-btn_favorite .b-btn_favorite__ico {
  line-height: 0;
  margin-right: 5px;
  transition: transform 0.3s;
}
.b-btn_favorite .b-btn_favorite__ico svg {
  fill: none;
  stroke: var(--member_red);
  stroke-miterlimit: 10;
  stroke-width: 2px;
}
.b-btn_favorite.is-checked .b-btn_favorite__ico svg {
  fill: var(--member_red);
}

.b-btn01 {
  text-align: center;
}
.b-btn01 a,
.b-btn01 button {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #fff;
  font-weight: bold;
  padding: 15px;
  width: 100%;
  max-width: 240px;
  background: var(--navy);
  border: 1px solid var(--navy);
  transition: color 0.3s, background 0.3s;
}
@media (any-hover: hover) {
  .b-btn01 a:hover,
  .b-btn01 button:hover {
    background: none;
    color: var(--navy);
  }
}
.b-btn01.b-btn01--blue a,
.b-btn01.b-btn01--blue button {
  background: var(--blue);
  border-color: var(--blue);
}
@media (any-hover: hover) {
  .b-btn01.b-btn01--blue a:hover,
  .b-btn01.b-btn01--blue button:hover {
    background: none;
    color: var(--blue);
  }
  .b-btn01.b-btn01--blue a:hover .b-ico_arrow_b::before,
  .b-btn01.b-btn01--blue button:hover .b-ico_arrow_b::before {
    border-color: var(--blue);
  }
}
.b-btn01.b-btn01--white a,
.b-btn01.b-btn01--white button {
  background: #fff;
  border-color: #fff;
  color: #2e56b4;
}
@media (any-hover: hover) {
  .b-btn01.b-btn01--white a:hover,
  .b-btn01.b-btn01--white button:hover {
    background: none;
    color: #fff;
  }
}
.b-btn01.b-btn01--yellow a,
.b-btn01.b-btn01--yellow button {
  background: var(--logo_yellow);
  border-color: var(--logo_yellow);
}
@media (any-hover: hover) {
  .b-btn01.b-btn01--yellow a:hover,
  .b-btn01.b-btn01--yellow button:hover {
    background: none;
    color: var(--logo_yellow);
  }
}
.b-btn01.b-btn01--small a,
.b-btn01.b-btn01--small button {
  font-size: 1.4rem;
  padding: 10px;
  max-width: 180px;
}

.b-btn02 {
  text-align: center;
}
.b-btn02 a {
  color: var(--text_color);
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 5px 15px;
  width: 100%;
  max-width: 150px;
  background: #fff;
  border: 1px solid #fff;
  transition: color 0.3s, background 0.3s;
}
@media screen and (max-width: 768px) {
  .b-btn02 a {
    font-size: 1.4rem;
  }
}
@media (any-hover: hover) {
  .b-btn02 a:hover {
    background: transparent;
    color: #fff;
  }
  .b-btn02 a:hover .b-ico_arrow_r::before {
    border-color: #fff;
  }
}
.b-btn02 .b-ico_arrow_r::before {
  transition: border-color 0.3s;
}
@media screen and (max-width: 768px) {
  .b-btn02 .b-ico_arrow_r::before {
    width: 6px;
    height: 6px;
  }
}

.b-btn03 {
  text-align: center;
}
.b-btn03 a {
  color: #fff;
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 15px 15px;
  width: 100%;
  max-width: 220px;
  background: var(--navy);
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .b-btn03 a:hover {
    opacity: 0.7;
  }
}

.b-btn04 {
  text-align: center;
}
.b-btn04 a {
  color: #fff;
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1.5;
  padding: 12px 15px;
  width: 100%;
  max-width: 245px;
  background: var(--blue);
  border: 1px solid var(--blue);
  transition: color 0.3s, background 0.3s;
}
@media screen and (max-width: 768px) {
  .b-btn04 a {
    max-width: 220px;
    padding: 15px;
    font-size: 1.6rem;
  }
}
@media (any-hover: hover) {
  .b-btn04 a:hover {
    color: var(--blue);
    background: transparent;
  }
}

.b-sp_login_btn {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 7px 25px;
  background: var(--logo_blue);
  color: #fff;
  z-index: 10;
  border: 1px solid #ccc;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .b-sp_login_btn {
    display: block;
  }
}

/************************************************

	icon

*************************************************/
.b-ico_member {
  position: relative;
  padding-left: 22px;
  display: inline-block;
}
.b-ico_member::before {
  content: "";
  display: block;
  background: url("../images/ico_user.svg") no-repeat center/contain;
  width: 17px;
  height: 19px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.b-ico_login {
  position: relative;
  padding-left: 21px;
  display: inline-block;
}
.b-ico_login::before {
  content: "";
  display: block;
  background: url("../images/ico_login.svg") no-repeat center/contain;
  width: 16px;
  height: 17px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.b-ico_logout {
  position: relative;
  padding-left: 22px;
  display: inline-block;
}
.b-ico_logout::before {
  content: "";
  display: block;
  background: url("../images/ico_logout.svg") no-repeat center/contain;
  width: 17px;
  height: 17px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.b-ico_signup {
  position: relative;
  padding-left: 22px;
  display: inline-block;
}
.b-ico_signup::before {
  content: "";
  display: block;
  background: url("../images/ico_signup.svg") no-repeat center/contain;
  width: 17px;
  height: 17px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.b-ico_search {
  display: inline-block;
  position: relative;
  padding-left: 21px;
}
.b-ico_search::before {
  content: "";
  display: block;
  background: url("../images/ico_search.svg") no-repeat center/contain;
  width: 16px;
  height: 17px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.b-ico_tag {
  display: inline-block;
  position: relative;
  padding-left: 27px;
}
.b-ico_tag::before {
  content: "";
  display: block;
  background: url("../images/ico_tag.svg") no-repeat center/contain;
  width: 22px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.b-ico_arrow_r {
  display: inline-block;
  position: relative;
  padding-right: 15px;
}
.b-ico_arrow_r::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid #707070;
  border-bottom: 2px solid #707070;
  position: absolute;
  top: 51%;
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
}
.b-ico_arrow_r.b-ico_arrow_r--white::before {
  border-color: #fff;
}

.b-ico_arrow_b {
  display: inline-block;
  position: relative;
  padding-right: 15px;
}
.b-ico_arrow_b::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid #707070;
  border-bottom: 2px solid #707070;
  position: absolute;
  top: 51%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}
.b-ico_arrow_b.b-ico_arrow_b--white::before {
  border-color: #fff;
}

.b-ico_question {
  display: inline-block;
  position: relative;
  padding-left: 36px;
}
@media screen and (max-width: 768px) {
  .b-ico_question {
    padding-left: 25px;
  }
}
.b-ico_question::before {
  content: "";
  display: block;
  width: 26px;
  height: 27px;
  background: url("../images/ico_ask.svg") no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .b-ico_question::before {
    width: 17.3333333333px;
    height: 18px;
  }
}

.b-ico_attached {
  display: inline-block;
  position: relative;
  padding-right: 26px;
}
.b-ico_attached::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url("../images/ico_attached.svg") no-repeat center/contain;
  position: absolute;
  top: 52%;
  right: 0;
  transform: translateY(-50%);
}

.b-ico_blank {
  display: inline-block;
  position: relative;
  padding-right: 25px;
}
.b-ico_blank::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background: url("../images/ico_blank.svg") no-repeat center/contain;
  position: absolute;
  top: 52%;
  right: 0;
  transform: translateY(-50%);
}

/************************************************

	form

*************************************************/
.b-form .b-form__ttl {
  font-size: 2.4rem;
}
.b-form .b-form__txt {
  margin-top: 20px;
}
.b-form .b-form__box {
  display: -webkit-flex;
  display: flex;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .b-form .b-form__box {
    display: block;
    border: none;
  }
}
.b-form .b-form__box + .b-form__box {
  border-top: none;
}
@media screen and (max-width: 768px) {
  .b-form .b-form__box + .b-form__box {
    margin-top: 20px;
  }
}
.b-form .b-form__box .b-form__box__inner {
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
}
.b-form .b-form__label_box {
  width: 25.7%;
  flex-shrink: 0;
  padding: 33px 10px 30px 0;
  border-right: 1px dashed #ccc;
}
@media screen and (max-width: 768px) {
  .b-form .b-form__label_box {
    padding: 0;
    width: 100%;
    border: none;
  }
}
.b-form .b-form__label {
  font-weight: bold;
  font-size: 1.6rem;
}
.b-form .b-form__label02 {
  font-size: 1.6rem;
}
.b-form .b-form__ico_required {
  display: inline-block;
  background: var(--member_red);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  padding: 6px 7px;
  border-radius: 5px;
  font-feature-settings: "palt";
}
.b-form .b-form__notes {
  font-size: 1.4rem;
  margin-top: 3px;
}
.b-form .b-form__input_box {
  padding: 30px 0 30px 25px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .b-form .b-form__input_box {
    padding: 0;
    margin-top: 10px;
  }
}
.b-form .b-form__input_box.b-form__input_box--fit {
  width: fit-content;
}
.b-form .b-form__input_box.b-form__input_box--interaction {
  padding-right: 30px;
  position: relative;
}
.b-form .b-form__input_box.b-form__input_box--interaction .b-form__input_box--interaction__ico {
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: left;
  opacity: 0;
  transition: transform 0.2s, opacity 0.2s;
}
.b-form .b-form__input_box.b-form__input_box--interaction .b-form__input_box--interaction__ico::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid green;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.b-form .b-form__input_box.b-form__input_box--interaction .b-form__input_box--interaction__ico::after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  border-left: 2px solid green;
  border-bottom: 2px solid green;
  position: absolute;
  top: calc(50% - 2px);
  right: 6px;
  transform: translateY(-50%) rotateZ(-45deg);
}
.b-form .b-form__input_box.b-form__input_box--interaction .b-form__input:valid + .input_box--interaction__ico {
  transform: translateY(-50%) rotate(0deg);
  opacity: 1;
}
.b-form .b-form__input_box.b-form__input_box--interaction .b-form__input:placeholder-shown + .input_box--interaction__ico {
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0;
}
.b-form .b-form__input_box.b-form__input_box--2col {
  display: -webkit-flex;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .b-form .b-form__input_box.b-form__input_box--2col {
    gap: 10px;
  }
}
.b-form .b-form__input_box.b-form__input_box--2col .b-form__input_box--2col__col {
  width: 100%;
}
.b-form .b-form__sub_input_box {
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 768px) {
  .b-form .b-form__sub_input_box {
    display: block;
  }
}
.b-form .b-form__sub_input_box + .b-form__sub_input_box {
  margin-top: 20px;
}
.b-form .b-form__sub_input_box .b-form__sub_input_box__col_l {
  width: 7em;
  padding-right: 20px;
  padding-top: 3px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .b-form .b-form__sub_input_box .b-form__sub_input_box__col_l {
    width: 100%;
  }
}
.b-form .b-form__sub_input_box .b-form__sub_input_box__col_r {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .b-form .b-form__sub_input_box .b-form__sub_input_box__col_r {
    margin-top: 10px;
  }
}
.b-form .b-form__input {
  width: 100%;
  padding: 10px;
  border: none;
  background: var(--input_bg);
}
.b-form .b-form__input.b-form__input--tel {
  width: calc(22px + 4ch);
}
.b-form .b-form__input.b-form__input--tel:first-of-type {
  width: calc(22px + 5ch);
}
.b-form .b-form__input.b-form__input--postal_code {
  width: calc(22px + 4ch);
}
.b-form .b-form__input.b-form__input--postal_code:first-of-type {
  width: calc(22px + 3ch);
}
.b-form .b-form__input.b-form__input--address_level1 {
  width: calc(22px + 6em);
}
.b-form .b-form__input02 {
  width: 100%;
  padding: 5px 10px;
  border: 2px solid #ccc;
}
.b-form .b-form__select {
  padding: 10px;
  border: none;
  background: var(--input_bg);
}
.b-form .b-form__button_confirm {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .b-form .b-form__button_confirm {
    margin-top: 30px;
  }
}
.b-form .b-form__button_confirm a,
.b-form .b-form__button_confirm button {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #fff;
  font-weight: bold;
  padding: 15px;
  width: 100%;
  max-width: 240px;
  background: var(--navy);
  border: 1px solid var(--navy);
  transition: color 0.3s, background 0.3s;
}
@media (any-hover: hover) {
  .b-form .b-form__button_confirm a:hover,
  .b-form .b-form__button_confirm button:hover {
    color: var(--navy);
    background: none;
  }
}
.b-form .b-form__button_confirm a.is-disabled,
.b-form .b-form__button_confirm button.is-disabled {
  background: #666;
  color: #ccc;
  cursor: auto;
  border-color: #666;
}
.b-form .b-form__button_confirm.b-btn01--blue a,
.b-form .b-form__button_confirm.b-btn01--blue button {
  background: var(--blue);
}
.b-form .b-form__button_confirm.b-btn01--small a,
.b-form .b-form__button_confirm.b-btn01--small button {
  font-size: 1.4rem;
  padding: 10px;
  max-width: 180px;
}
.b-form .b-form__button_back {
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .b-form .b-form__button_back {
    margin-top: 30px;
  }
}
.b-form .b-form__button_back a,
.b-form .b-form__button_back button {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  padding: 5px;
  width: 100%;
  max-width: 140px;
  background: #fff;
  border: 1px solid;
  transition: color 0.3s, background 0.3s;
}
@media (any-hover: hover) {
  .b-form .b-form__button_back a:hover,
  .b-form .b-form__button_back button:hover {
    background: var(--text_color);
    color: #fff;
  }
}
.b-form .b-form__button_auto_address {
  margin-left: 20px;
  display: inline-block;
  vertical-align: bottom;
}
.b-form .b-form__button_auto_address button {
  background: var(--blue);
  text-align: center;
  padding: 10px 20px;
  line-height: 1;
  color: #fff;
  display: inline-block;
  border: 1px solid var(--blue);
  transition: color 0.3s, background 0.3s;
}
@media (any-hover: hover) {
  .b-form .b-form__button_auto_address button:hover {
    color: var(--blue);
    background: none;
  }
}
.b-form ::placeholder {
  color: #bbb;
}
.b-form .b-form__list_row {
  display: flex;
  flex-wrap: wrap;
}
.b-form .b-form__list_row li {
  margin-right: 20px;
}
.b-form .b-form__list_row li:last-of-type {
  margin-right: 0;
}
.b-form .b-form__checkbox {
  cursor: pointer;
}
.b-form .b-form__checkbox input {
  opacity: 0;
  position: absolute;
}
.b-form .b-form__checkbox input:checked {
  color: #d00;
}
.b-form .b-form__checkbox input:checked + .b-form__checkbox__ico::before {
  background: var(--blue);
  border-color: var(--blue);
}
.b-form .b-form__checkbox input:checked + .b-form__checkbox__ico::after {
  opacity: 1;
}
.b-form .b-form__checkbox input:focus-visible + .b-form__checkbox__ico::before {
  box-shadow: 0px 0px 0px 2px #fff, 0px 0px 0px 4px var(--blue);
}
.b-form .b-form__checkbox .b-form__checkbox__ico {
  position: relative;
  padding-left: calc(0.9em + 8px);
  display: inline-block;
  line-height: 1.3;
}
.b-form .b-form__checkbox .b-form__checkbox__ico::before {
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  border: 1px solid;
  border-radius: 3px;
  position: absolute;
  top: 0.3em;
  left: 0;
}
.b-form .b-form__checkbox .b-form__checkbox__ico::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.2em;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  top: 0.55em;
  left: 0.2em;
  transform: rotate(-45deg);
  opacity: 0;
}
.b-form .b-form__checkbox .b-form__checkbox__txt {
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .b-form .b-form__checkbox .b-form__checkbox__txt:hover {
    opacity: 0.7;
  }
}
.b-form .b-form__radio {
  cursor: pointer;
}
.b-form .b-form__radio input {
  opacity: 0;
  position: absolute;
}
.b-form .b-form__radio input:checked + .b-form__radio__ico::before {
  opacity: 0;
}
.b-form .b-form__radio input:checked + .b-form__radio__ico::after {
  opacity: 1;
}
.b-form .b-form__radio input:focus-visible + .b-form__radio__ico::before {
  box-shadow: 0px 0px 0px 2px #fff, 0px 0px 0px 4px var(--blue);
}
.b-form .b-form__radio input:focus-visible + .b-form__radio__ico::after {
  box-shadow: 0px 0px 0px 2px #fff, 0px 0px 0px 4px var(--blue);
}
.b-form .b-form__radio .b-form__radio__ico {
  position: relative;
  padding-left: calc(0.9em + 8px);
  display: inline-block;
  line-height: 1.3;
}
.b-form .b-form__radio .b-form__radio__ico::before {
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  border: 1px solid;
  border-radius: 50%;
  position: absolute;
  top: 0.15em;
  left: 0;
}
.b-form .b-form__radio .b-form__radio__ico::after {
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: var(--blue);
  outline: 2px solid #fff;
  outline-offset: -4px;
  position: absolute;
  top: 0.15em;
  left: 0;
  opacity: 0;
}
.b-form .b-form__radio .b-form__radio__txt {
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .b-form .b-form__radio .b-form__radio__txt:hover {
    opacity: 0.7;
  }
}
.b-form .b-form__txt02 {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .b-form .b-form__txt02 {
    margin-top: 30px;
  }
}
.b-form .b-form__link {
  color: var(--link_orange);
  text-decoration: underline;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .b-form .b-form__link:hover {
    opacity: 0.7;
  }
}
.b-form .b-form__check_policy {
  margin: 20px auto 0;
  background: #eaeaea;
  padding: 15px 30px;
  width: fit-content;
}
.b-form :focus {
  scroll-margin-top: 50px;
}
.b-form .b-form__search_box {
  display: -webkit-flex;
  display: flex;
}
.b-form .b-form__search_box .b-form__input {
  border-radius: 5px 0 0 5px;
  margin-top: 0;
}
.b-form .b-form__search_box .b-form__search_box__btn {
  display: block;
  flex-shrink: 0;
  background: var(--blue);
  color: #fff;
  padding-inline: 15px;
  border-radius: 0 5px 5px 0;
}
.b-form .b-form__search_box .b-ico_search {
  display: -webkit-inline-flex;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 3px;
}
.b-form .b-form__search_box .b-ico_search::before {
  filter: brightness(0%) invert(1);
}
.b-form .b-form__textarea {
  width: 100%;
  padding: 10px;
  border: none;
  background: var(--input_bg);
}
.b-form .msg {
  margin-top: 5px;
  color: var(--member_red);
  display: inline-block;
}
.b-form .msg:empty {
  display: none;
}

/************************************************

	modal

*************************************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.b-modal {
  display: none;
}

.b-modal.is-open {
  display: block;
}

.b-modal[aria-hidden=false] .b-modal__cover {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.b-modal[aria-hidden=false] .b-modal__contents_inner {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.b-modal[aria-hidden=true] .b-modal__cover {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.b-modal[aria-hidden=true] .b-modal__contents_inner {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.b-modal .modal__container,
.b-modal .modal__overlay {
  will-change: transform;
}

.b-modal .b-modal__cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  background: rgba(0, 0, 0, 0.7);
}
.b-modal .b-modal__contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  padding: 0 20px;
}
.b-modal .b-modal__contents_inner {
  width: 100%;
  margin: 0 auto;
}
.b-modal .b-modal__contents_box {
  width: 100%;
  max-height: calc(90vh - 20px - 1.75em);
  overflow: auto;
  background: #fff;
  padding: 20px 20px 40px;
  box-shadow: 3px 3px 15px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .b-modal .b-modal__contents_box {
    padding: 15px 15px 30px;
  }
}
.b-modal .b-modal__contents_box .b-tags {
  padding-left: 20px;
}
.b-modal .b-modal__contents_box .b-tags li {
  font-size: 1.6rem;
  margin-top: 10px;
}
.b-modal .b-modal__contents_box .b-form {
  margin: 30px 20px 0;
}
@media screen and (max-width: 768px) {
  .b-modal .b-modal__contents_box .b-form {
    margin: 20px 10px 0;
  }
}
.b-modal .b-modal__movie {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
.b-modal .b-modal__movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.b-modal .b-modal__title {
  font-size: 2.2rem;
  line-height: 1.5;
  padding-bottom: 3px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .b-modal .b-modal__title {
    font-size: 1.8rem;
  }
}
.b-modal .b-modal__btn_outer {
  text-align: right;
}
.b-modal .b-modal__btn_close {
  background: #fff;
  padding: 3px;
  line-height: 1;
  /*display: -webkit-flex;
        display: flex;
        align-items: center;*/
}
@media screen and (max-width: 768px) {
  .b-modal .b-modal__btn_close {
    font-size: 1.4rem;
  }
}
.b-modal .b-modal__btn_close::before {
  content: "×";
  display: inline-block;
  margin-right: 5px;
  font-size: 1.8em;
  vertical-align: middle;
  transform: translateY(-0.04em);
}

/************************************************

	utility

*************************************************/
.b-m0 {
  margin: 0px !important;
}

.b-mt0 {
  margin-top: 0px !important;
}

.b-mb0 {
  margin-bottom: 0px !important;
}

.b-ml0 {
  margin-left: 0px !important;
}

.b-mr0 {
  margin-right: 0px !important;
}

.b-p0 {
  padding: 0px !important;
}

.b-pt0 {
  padding-top: 0px !important;
}

.b-pb0 {
  padding-bottom: 0px !important;
}

.b-pl0 {
  padding-left: 0px !important;
}

.b-pr0 {
  padding-right: 0px !important;
}

.b-wpx0 {
  width: 0px !important;
}

.b-m5 {
  margin: 5px !important;
}

.b-mt5 {
  margin-top: 5px !important;
}

.b-mb5 {
  margin-bottom: 5px !important;
}

.b-ml5 {
  margin-left: 5px !important;
}

.b-mr5 {
  margin-right: 5px !important;
}

.b-p5 {
  padding: 5px !important;
}

.b-pt5 {
  padding-top: 5px !important;
}

.b-pb5 {
  padding-bottom: 5px !important;
}

.b-pl5 {
  padding-left: 5px !important;
}

.b-pr5 {
  padding-right: 5px !important;
}

.b-wpx5 {
  width: 5px !important;
}

.b-m10 {
  margin: 10px !important;
}

.b-mt10 {
  margin-top: 10px !important;
}

.b-mb10 {
  margin-bottom: 10px !important;
}

.b-ml10 {
  margin-left: 10px !important;
}

.b-mr10 {
  margin-right: 10px !important;
}

.b-p10 {
  padding: 10px !important;
}

.b-pt10 {
  padding-top: 10px !important;
}

.b-pb10 {
  padding-bottom: 10px !important;
}

.b-pl10 {
  padding-left: 10px !important;
}

.b-pr10 {
  padding-right: 10px !important;
}

.b-wpx10 {
  width: 10px !important;
}

.b-m15 {
  margin: 15px !important;
}

.b-mt15 {
  margin-top: 15px !important;
}

.b-mb15 {
  margin-bottom: 15px !important;
}

.b-ml15 {
  margin-left: 15px !important;
}

.b-mr15 {
  margin-right: 15px !important;
}

.b-p15 {
  padding: 15px !important;
}

.b-pt15 {
  padding-top: 15px !important;
}

.b-pb15 {
  padding-bottom: 15px !important;
}

.b-pl15 {
  padding-left: 15px !important;
}

.b-pr15 {
  padding-right: 15px !important;
}

.b-wpx15 {
  width: 15px !important;
}

.b-m20 {
  margin: 20px !important;
}

.b-mt20 {
  margin-top: 20px !important;
}

.b-mb20 {
  margin-bottom: 20px !important;
}

.b-ml20 {
  margin-left: 20px !important;
}

.b-mr20 {
  margin-right: 20px !important;
}

.b-p20 {
  padding: 20px !important;
}

.b-pt20 {
  padding-top: 20px !important;
}

.b-pb20 {
  padding-bottom: 20px !important;
}

.b-pl20 {
  padding-left: 20px !important;
}

.b-pr20 {
  padding-right: 20px !important;
}

.b-wpx20 {
  width: 20px !important;
}

.b-m25 {
  margin: 25px !important;
}

.b-mt25 {
  margin-top: 25px !important;
}

.b-mb25 {
  margin-bottom: 25px !important;
}

.b-ml25 {
  margin-left: 25px !important;
}

.b-mr25 {
  margin-right: 25px !important;
}

.b-p25 {
  padding: 25px !important;
}

.b-pt25 {
  padding-top: 25px !important;
}

.b-pb25 {
  padding-bottom: 25px !important;
}

.b-pl25 {
  padding-left: 25px !important;
}

.b-pr25 {
  padding-right: 25px !important;
}

.b-wpx25 {
  width: 25px !important;
}

.b-m30 {
  margin: 30px !important;
}

.b-mt30 {
  margin-top: 30px !important;
}

.b-mb30 {
  margin-bottom: 30px !important;
}

.b-ml30 {
  margin-left: 30px !important;
}

.b-mr30 {
  margin-right: 30px !important;
}

.b-p30 {
  padding: 30px !important;
}

.b-pt30 {
  padding-top: 30px !important;
}

.b-pb30 {
  padding-bottom: 30px !important;
}

.b-pl30 {
  padding-left: 30px !important;
}

.b-pr30 {
  padding-right: 30px !important;
}

.b-wpx30 {
  width: 30px !important;
}

.b-m35 {
  margin: 35px !important;
}

.b-mt35 {
  margin-top: 35px !important;
}

.b-mb35 {
  margin-bottom: 35px !important;
}

.b-ml35 {
  margin-left: 35px !important;
}

.b-mr35 {
  margin-right: 35px !important;
}

.b-p35 {
  padding: 35px !important;
}

.b-pt35 {
  padding-top: 35px !important;
}

.b-pb35 {
  padding-bottom: 35px !important;
}

.b-pl35 {
  padding-left: 35px !important;
}

.b-pr35 {
  padding-right: 35px !important;
}

.b-wpx35 {
  width: 35px !important;
}

.b-m40 {
  margin: 40px !important;
}

.b-mt40 {
  margin-top: 40px !important;
}

.b-mb40 {
  margin-bottom: 40px !important;
}

.b-ml40 {
  margin-left: 40px !important;
}

.b-mr40 {
  margin-right: 40px !important;
}

.b-p40 {
  padding: 40px !important;
}

.b-pt40 {
  padding-top: 40px !important;
}

.b-pb40 {
  padding-bottom: 40px !important;
}

.b-pl40 {
  padding-left: 40px !important;
}

.b-pr40 {
  padding-right: 40px !important;
}

.b-wpx40 {
  width: 40px !important;
}

.b-m45 {
  margin: 45px !important;
}

.b-mt45 {
  margin-top: 45px !important;
}

.b-mb45 {
  margin-bottom: 45px !important;
}

.b-ml45 {
  margin-left: 45px !important;
}

.b-mr45 {
  margin-right: 45px !important;
}

.b-p45 {
  padding: 45px !important;
}

.b-pt45 {
  padding-top: 45px !important;
}

.b-pb45 {
  padding-bottom: 45px !important;
}

.b-pl45 {
  padding-left: 45px !important;
}

.b-pr45 {
  padding-right: 45px !important;
}

.b-wpx45 {
  width: 45px !important;
}

.b-m50 {
  margin: 50px !important;
}

.b-mt50 {
  margin-top: 50px !important;
}

.b-mb50 {
  margin-bottom: 50px !important;
}

.b-ml50 {
  margin-left: 50px !important;
}

.b-mr50 {
  margin-right: 50px !important;
}

.b-p50 {
  padding: 50px !important;
}

.b-pt50 {
  padding-top: 50px !important;
}

.b-pb50 {
  padding-bottom: 50px !important;
}

.b-pl50 {
  padding-left: 50px !important;
}

.b-pr50 {
  padding-right: 50px !important;
}

.b-wpx50 {
  width: 50px !important;
}

.b-m55 {
  margin: 55px !important;
}

.b-mt55 {
  margin-top: 55px !important;
}

.b-mb55 {
  margin-bottom: 55px !important;
}

.b-ml55 {
  margin-left: 55px !important;
}

.b-mr55 {
  margin-right: 55px !important;
}

.b-p55 {
  padding: 55px !important;
}

.b-pt55 {
  padding-top: 55px !important;
}

.b-pb55 {
  padding-bottom: 55px !important;
}

.b-pl55 {
  padding-left: 55px !important;
}

.b-pr55 {
  padding-right: 55px !important;
}

.b-wpx55 {
  width: 55px !important;
}

.b-m60 {
  margin: 60px !important;
}

.b-mt60 {
  margin-top: 60px !important;
}

.b-mb60 {
  margin-bottom: 60px !important;
}

.b-ml60 {
  margin-left: 60px !important;
}

.b-mr60 {
  margin-right: 60px !important;
}

.b-p60 {
  padding: 60px !important;
}

.b-pt60 {
  padding-top: 60px !important;
}

.b-pb60 {
  padding-bottom: 60px !important;
}

.b-pl60 {
  padding-left: 60px !important;
}

.b-pr60 {
  padding-right: 60px !important;
}

.b-wpx60 {
  width: 60px !important;
}

.b-m65 {
  margin: 65px !important;
}

.b-mt65 {
  margin-top: 65px !important;
}

.b-mb65 {
  margin-bottom: 65px !important;
}

.b-ml65 {
  margin-left: 65px !important;
}

.b-mr65 {
  margin-right: 65px !important;
}

.b-p65 {
  padding: 65px !important;
}

.b-pt65 {
  padding-top: 65px !important;
}

.b-pb65 {
  padding-bottom: 65px !important;
}

.b-pl65 {
  padding-left: 65px !important;
}

.b-pr65 {
  padding-right: 65px !important;
}

.b-wpx65 {
  width: 65px !important;
}

.b-m70 {
  margin: 70px !important;
}

.b-mt70 {
  margin-top: 70px !important;
}

.b-mb70 {
  margin-bottom: 70px !important;
}

.b-ml70 {
  margin-left: 70px !important;
}

.b-mr70 {
  margin-right: 70px !important;
}

.b-p70 {
  padding: 70px !important;
}

.b-pt70 {
  padding-top: 70px !important;
}

.b-pb70 {
  padding-bottom: 70px !important;
}

.b-pl70 {
  padding-left: 70px !important;
}

.b-pr70 {
  padding-right: 70px !important;
}

.b-wpx70 {
  width: 70px !important;
}

.b-m75 {
  margin: 75px !important;
}

.b-mt75 {
  margin-top: 75px !important;
}

.b-mb75 {
  margin-bottom: 75px !important;
}

.b-ml75 {
  margin-left: 75px !important;
}

.b-mr75 {
  margin-right: 75px !important;
}

.b-p75 {
  padding: 75px !important;
}

.b-pt75 {
  padding-top: 75px !important;
}

.b-pb75 {
  padding-bottom: 75px !important;
}

.b-pl75 {
  padding-left: 75px !important;
}

.b-pr75 {
  padding-right: 75px !important;
}

.b-wpx75 {
  width: 75px !important;
}

.b-m80 {
  margin: 80px !important;
}

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

.b-mb80 {
  margin-bottom: 80px !important;
}

.b-ml80 {
  margin-left: 80px !important;
}

.b-mr80 {
  margin-right: 80px !important;
}

.b-p80 {
  padding: 80px !important;
}

.b-pt80 {
  padding-top: 80px !important;
}

.b-pb80 {
  padding-bottom: 80px !important;
}

.b-pl80 {
  padding-left: 80px !important;
}

.b-pr80 {
  padding-right: 80px !important;
}

.b-wpx80 {
  width: 80px !important;
}

.b-m85 {
  margin: 85px !important;
}

.b-mt85 {
  margin-top: 85px !important;
}

.b-mb85 {
  margin-bottom: 85px !important;
}

.b-ml85 {
  margin-left: 85px !important;
}

.b-mr85 {
  margin-right: 85px !important;
}

.b-p85 {
  padding: 85px !important;
}

.b-pt85 {
  padding-top: 85px !important;
}

.b-pb85 {
  padding-bottom: 85px !important;
}

.b-pl85 {
  padding-left: 85px !important;
}

.b-pr85 {
  padding-right: 85px !important;
}

.b-wpx85 {
  width: 85px !important;
}

.b-m90 {
  margin: 90px !important;
}

.b-mt90 {
  margin-top: 90px !important;
}

.b-mb90 {
  margin-bottom: 90px !important;
}

.b-ml90 {
  margin-left: 90px !important;
}

.b-mr90 {
  margin-right: 90px !important;
}

.b-p90 {
  padding: 90px !important;
}

.b-pt90 {
  padding-top: 90px !important;
}

.b-pb90 {
  padding-bottom: 90px !important;
}

.b-pl90 {
  padding-left: 90px !important;
}

.b-pr90 {
  padding-right: 90px !important;
}

.b-wpx90 {
  width: 90px !important;
}

.b-m95 {
  margin: 95px !important;
}

.b-mt95 {
  margin-top: 95px !important;
}

.b-mb95 {
  margin-bottom: 95px !important;
}

.b-ml95 {
  margin-left: 95px !important;
}

.b-mr95 {
  margin-right: 95px !important;
}

.b-p95 {
  padding: 95px !important;
}

.b-pt95 {
  padding-top: 95px !important;
}

.b-pb95 {
  padding-bottom: 95px !important;
}

.b-pl95 {
  padding-left: 95px !important;
}

.b-pr95 {
  padding-right: 95px !important;
}

.b-wpx95 {
  width: 95px !important;
}

.b-m100 {
  margin: 100px !important;
}

.b-mt100 {
  margin-top: 100px !important;
}

.b-mb100 {
  margin-bottom: 100px !important;
}

.b-ml100 {
  margin-left: 100px !important;
}

.b-mr100 {
  margin-right: 100px !important;
}

.b-p100 {
  padding: 100px !important;
}

.b-pt100 {
  padding-top: 100px !important;
}

.b-pb100 {
  padding-bottom: 100px !important;
}

.b-pl100 {
  padding-left: 100px !important;
}

.b-pr100 {
  padding-right: 100px !important;
}

.b-wpx100 {
  width: 100px !important;
}

@media screen and (max-width: 768px) {
  .b-sp_m0 {
    margin: 0px !important;
  }
  .b-sp_mt0 {
    margin-top: 0px !important;
  }
  .b-sp_mb0 {
    margin-bottom: 0px !important;
  }
  .b-sp_ml0 {
    margin-left: 0px !important;
  }
  .b-sp_mr0 {
    margin-right: 0px !important;
  }
  .b-sp_p0 {
    padding: 0px !important;
  }
  .b-sp_pt0 {
    padding-top: 0px !important;
  }
  .b-sp_pb0 {
    padding-bottom: 0px !important;
  }
  .b-sp_pl0 {
    padding-left: 0px !important;
  }
  .b-sp_pr0 {
    padding-right: 0px !important;
  }
  .b-sp_wpx0 {
    width: 0px !important;
  }
  .b-sp_m5 {
    margin: 5px !important;
  }
  .b-sp_mt5 {
    margin-top: 5px !important;
  }
  .b-sp_mb5 {
    margin-bottom: 5px !important;
  }
  .b-sp_ml5 {
    margin-left: 5px !important;
  }
  .b-sp_mr5 {
    margin-right: 5px !important;
  }
  .b-sp_p5 {
    padding: 5px !important;
  }
  .b-sp_pt5 {
    padding-top: 5px !important;
  }
  .b-sp_pb5 {
    padding-bottom: 5px !important;
  }
  .b-sp_pl5 {
    padding-left: 5px !important;
  }
  .b-sp_pr5 {
    padding-right: 5px !important;
  }
  .b-sp_wpx5 {
    width: 5px !important;
  }
  .b-sp_m10 {
    margin: 10px !important;
  }
  .b-sp_mt10 {
    margin-top: 10px !important;
  }
  .b-sp_mb10 {
    margin-bottom: 10px !important;
  }
  .b-sp_ml10 {
    margin-left: 10px !important;
  }
  .b-sp_mr10 {
    margin-right: 10px !important;
  }
  .b-sp_p10 {
    padding: 10px !important;
  }
  .b-sp_pt10 {
    padding-top: 10px !important;
  }
  .b-sp_pb10 {
    padding-bottom: 10px !important;
  }
  .b-sp_pl10 {
    padding-left: 10px !important;
  }
  .b-sp_pr10 {
    padding-right: 10px !important;
  }
  .b-sp_wpx10 {
    width: 10px !important;
  }
  .b-sp_m15 {
    margin: 15px !important;
  }
  .b-sp_mt15 {
    margin-top: 15px !important;
  }
  .b-sp_mb15 {
    margin-bottom: 15px !important;
  }
  .b-sp_ml15 {
    margin-left: 15px !important;
  }
  .b-sp_mr15 {
    margin-right: 15px !important;
  }
  .b-sp_p15 {
    padding: 15px !important;
  }
  .b-sp_pt15 {
    padding-top: 15px !important;
  }
  .b-sp_pb15 {
    padding-bottom: 15px !important;
  }
  .b-sp_pl15 {
    padding-left: 15px !important;
  }
  .b-sp_pr15 {
    padding-right: 15px !important;
  }
  .b-sp_wpx15 {
    width: 15px !important;
  }
  .b-sp_m20 {
    margin: 20px !important;
  }
  .b-sp_mt20 {
    margin-top: 20px !important;
  }
  .b-sp_mb20 {
    margin-bottom: 20px !important;
  }
  .b-sp_ml20 {
    margin-left: 20px !important;
  }
  .b-sp_mr20 {
    margin-right: 20px !important;
  }
  .b-sp_p20 {
    padding: 20px !important;
  }
  .b-sp_pt20 {
    padding-top: 20px !important;
  }
  .b-sp_pb20 {
    padding-bottom: 20px !important;
  }
  .b-sp_pl20 {
    padding-left: 20px !important;
  }
  .b-sp_pr20 {
    padding-right: 20px !important;
  }
  .b-sp_wpx20 {
    width: 20px !important;
  }
  .b-sp_m25 {
    margin: 25px !important;
  }
  .b-sp_mt25 {
    margin-top: 25px !important;
  }
  .b-sp_mb25 {
    margin-bottom: 25px !important;
  }
  .b-sp_ml25 {
    margin-left: 25px !important;
  }
  .b-sp_mr25 {
    margin-right: 25px !important;
  }
  .b-sp_p25 {
    padding: 25px !important;
  }
  .b-sp_pt25 {
    padding-top: 25px !important;
  }
  .b-sp_pb25 {
    padding-bottom: 25px !important;
  }
  .b-sp_pl25 {
    padding-left: 25px !important;
  }
  .b-sp_pr25 {
    padding-right: 25px !important;
  }
  .b-sp_wpx25 {
    width: 25px !important;
  }
  .b-sp_m30 {
    margin: 30px !important;
  }
  .b-sp_mt30 {
    margin-top: 30px !important;
  }
  .b-sp_mb30 {
    margin-bottom: 30px !important;
  }
  .b-sp_ml30 {
    margin-left: 30px !important;
  }
  .b-sp_mr30 {
    margin-right: 30px !important;
  }
  .b-sp_p30 {
    padding: 30px !important;
  }
  .b-sp_pt30 {
    padding-top: 30px !important;
  }
  .b-sp_pb30 {
    padding-bottom: 30px !important;
  }
  .b-sp_pl30 {
    padding-left: 30px !important;
  }
  .b-sp_pr30 {
    padding-right: 30px !important;
  }
  .b-sp_wpx30 {
    width: 30px !important;
  }
  .b-sp_m35 {
    margin: 35px !important;
  }
  .b-sp_mt35 {
    margin-top: 35px !important;
  }
  .b-sp_mb35 {
    margin-bottom: 35px !important;
  }
  .b-sp_ml35 {
    margin-left: 35px !important;
  }
  .b-sp_mr35 {
    margin-right: 35px !important;
  }
  .b-sp_p35 {
    padding: 35px !important;
  }
  .b-sp_pt35 {
    padding-top: 35px !important;
  }
  .b-sp_pb35 {
    padding-bottom: 35px !important;
  }
  .b-sp_pl35 {
    padding-left: 35px !important;
  }
  .b-sp_pr35 {
    padding-right: 35px !important;
  }
  .b-sp_wpx35 {
    width: 35px !important;
  }
  .b-sp_m40 {
    margin: 40px !important;
  }
  .b-sp_mt40 {
    margin-top: 40px !important;
  }
  .b-sp_mb40 {
    margin-bottom: 40px !important;
  }
  .b-sp_ml40 {
    margin-left: 40px !important;
  }
  .b-sp_mr40 {
    margin-right: 40px !important;
  }
  .b-sp_p40 {
    padding: 40px !important;
  }
  .b-sp_pt40 {
    padding-top: 40px !important;
  }
  .b-sp_pb40 {
    padding-bottom: 40px !important;
  }
  .b-sp_pl40 {
    padding-left: 40px !important;
  }
  .b-sp_pr40 {
    padding-right: 40px !important;
  }
  .b-sp_wpx40 {
    width: 40px !important;
  }
  .b-sp_m45 {
    margin: 45px !important;
  }
  .b-sp_mt45 {
    margin-top: 45px !important;
  }
  .b-sp_mb45 {
    margin-bottom: 45px !important;
  }
  .b-sp_ml45 {
    margin-left: 45px !important;
  }
  .b-sp_mr45 {
    margin-right: 45px !important;
  }
  .b-sp_p45 {
    padding: 45px !important;
  }
  .b-sp_pt45 {
    padding-top: 45px !important;
  }
  .b-sp_pb45 {
    padding-bottom: 45px !important;
  }
  .b-sp_pl45 {
    padding-left: 45px !important;
  }
  .b-sp_pr45 {
    padding-right: 45px !important;
  }
  .b-sp_wpx45 {
    width: 45px !important;
  }
  .b-sp_m50 {
    margin: 50px !important;
  }
  .b-sp_mt50 {
    margin-top: 50px !important;
  }
  .b-sp_mb50 {
    margin-bottom: 50px !important;
  }
  .b-sp_ml50 {
    margin-left: 50px !important;
  }
  .b-sp_mr50 {
    margin-right: 50px !important;
  }
  .b-sp_p50 {
    padding: 50px !important;
  }
  .b-sp_pt50 {
    padding-top: 50px !important;
  }
  .b-sp_pb50 {
    padding-bottom: 50px !important;
  }
  .b-sp_pl50 {
    padding-left: 50px !important;
  }
  .b-sp_pr50 {
    padding-right: 50px !important;
  }
  .b-sp_wpx50 {
    width: 50px !important;
  }
  .b-sp_m55 {
    margin: 55px !important;
  }
  .b-sp_mt55 {
    margin-top: 55px !important;
  }
  .b-sp_mb55 {
    margin-bottom: 55px !important;
  }
  .b-sp_ml55 {
    margin-left: 55px !important;
  }
  .b-sp_mr55 {
    margin-right: 55px !important;
  }
  .b-sp_p55 {
    padding: 55px !important;
  }
  .b-sp_pt55 {
    padding-top: 55px !important;
  }
  .b-sp_pb55 {
    padding-bottom: 55px !important;
  }
  .b-sp_pl55 {
    padding-left: 55px !important;
  }
  .b-sp_pr55 {
    padding-right: 55px !important;
  }
  .b-sp_wpx55 {
    width: 55px !important;
  }
  .b-sp_m60 {
    margin: 60px !important;
  }
  .b-sp_mt60 {
    margin-top: 60px !important;
  }
  .b-sp_mb60 {
    margin-bottom: 60px !important;
  }
  .b-sp_ml60 {
    margin-left: 60px !important;
  }
  .b-sp_mr60 {
    margin-right: 60px !important;
  }
  .b-sp_p60 {
    padding: 60px !important;
  }
  .b-sp_pt60 {
    padding-top: 60px !important;
  }
  .b-sp_pb60 {
    padding-bottom: 60px !important;
  }
  .b-sp_pl60 {
    padding-left: 60px !important;
  }
  .b-sp_pr60 {
    padding-right: 60px !important;
  }
  .b-sp_wpx60 {
    width: 60px !important;
  }
  .b-sp_m65 {
    margin: 65px !important;
  }
  .b-sp_mt65 {
    margin-top: 65px !important;
  }
  .b-sp_mb65 {
    margin-bottom: 65px !important;
  }
  .b-sp_ml65 {
    margin-left: 65px !important;
  }
  .b-sp_mr65 {
    margin-right: 65px !important;
  }
  .b-sp_p65 {
    padding: 65px !important;
  }
  .b-sp_pt65 {
    padding-top: 65px !important;
  }
  .b-sp_pb65 {
    padding-bottom: 65px !important;
  }
  .b-sp_pl65 {
    padding-left: 65px !important;
  }
  .b-sp_pr65 {
    padding-right: 65px !important;
  }
  .b-sp_wpx65 {
    width: 65px !important;
  }
  .b-sp_m70 {
    margin: 70px !important;
  }
  .b-sp_mt70 {
    margin-top: 70px !important;
  }
  .b-sp_mb70 {
    margin-bottom: 70px !important;
  }
  .b-sp_ml70 {
    margin-left: 70px !important;
  }
  .b-sp_mr70 {
    margin-right: 70px !important;
  }
  .b-sp_p70 {
    padding: 70px !important;
  }
  .b-sp_pt70 {
    padding-top: 70px !important;
  }
  .b-sp_pb70 {
    padding-bottom: 70px !important;
  }
  .b-sp_pl70 {
    padding-left: 70px !important;
  }
  .b-sp_pr70 {
    padding-right: 70px !important;
  }
  .b-sp_wpx70 {
    width: 70px !important;
  }
  .b-sp_m75 {
    margin: 75px !important;
  }
  .b-sp_mt75 {
    margin-top: 75px !important;
  }
  .b-sp_mb75 {
    margin-bottom: 75px !important;
  }
  .b-sp_ml75 {
    margin-left: 75px !important;
  }
  .b-sp_mr75 {
    margin-right: 75px !important;
  }
  .b-sp_p75 {
    padding: 75px !important;
  }
  .b-sp_pt75 {
    padding-top: 75px !important;
  }
  .b-sp_pb75 {
    padding-bottom: 75px !important;
  }
  .b-sp_pl75 {
    padding-left: 75px !important;
  }
  .b-sp_pr75 {
    padding-right: 75px !important;
  }
  .b-sp_wpx75 {
    width: 75px !important;
  }
  .b-sp_m80 {
    margin: 80px !important;
  }
  .b-sp_mt80 {
    margin-top: 80px !important;
  }
  .b-sp_mb80 {
    margin-bottom: 80px !important;
  }
  .b-sp_ml80 {
    margin-left: 80px !important;
  }
  .b-sp_mr80 {
    margin-right: 80px !important;
  }
  .b-sp_p80 {
    padding: 80px !important;
  }
  .b-sp_pt80 {
    padding-top: 80px !important;
  }
  .b-sp_pb80 {
    padding-bottom: 80px !important;
  }
  .b-sp_pl80 {
    padding-left: 80px !important;
  }
  .b-sp_pr80 {
    padding-right: 80px !important;
  }
  .b-sp_wpx80 {
    width: 80px !important;
  }
  .b-sp_m85 {
    margin: 85px !important;
  }
  .b-sp_mt85 {
    margin-top: 85px !important;
  }
  .b-sp_mb85 {
    margin-bottom: 85px !important;
  }
  .b-sp_ml85 {
    margin-left: 85px !important;
  }
  .b-sp_mr85 {
    margin-right: 85px !important;
  }
  .b-sp_p85 {
    padding: 85px !important;
  }
  .b-sp_pt85 {
    padding-top: 85px !important;
  }
  .b-sp_pb85 {
    padding-bottom: 85px !important;
  }
  .b-sp_pl85 {
    padding-left: 85px !important;
  }
  .b-sp_pr85 {
    padding-right: 85px !important;
  }
  .b-sp_wpx85 {
    width: 85px !important;
  }
  .b-sp_m90 {
    margin: 90px !important;
  }
  .b-sp_mt90 {
    margin-top: 90px !important;
  }
  .b-sp_mb90 {
    margin-bottom: 90px !important;
  }
  .b-sp_ml90 {
    margin-left: 90px !important;
  }
  .b-sp_mr90 {
    margin-right: 90px !important;
  }
  .b-sp_p90 {
    padding: 90px !important;
  }
  .b-sp_pt90 {
    padding-top: 90px !important;
  }
  .b-sp_pb90 {
    padding-bottom: 90px !important;
  }
  .b-sp_pl90 {
    padding-left: 90px !important;
  }
  .b-sp_pr90 {
    padding-right: 90px !important;
  }
  .b-sp_wpx90 {
    width: 90px !important;
  }
  .b-sp_m95 {
    margin: 95px !important;
  }
  .b-sp_mt95 {
    margin-top: 95px !important;
  }
  .b-sp_mb95 {
    margin-bottom: 95px !important;
  }
  .b-sp_ml95 {
    margin-left: 95px !important;
  }
  .b-sp_mr95 {
    margin-right: 95px !important;
  }
  .b-sp_p95 {
    padding: 95px !important;
  }
  .b-sp_pt95 {
    padding-top: 95px !important;
  }
  .b-sp_pb95 {
    padding-bottom: 95px !important;
  }
  .b-sp_pl95 {
    padding-left: 95px !important;
  }
  .b-sp_pr95 {
    padding-right: 95px !important;
  }
  .b-sp_wpx95 {
    width: 95px !important;
  }
  .b-sp_m100 {
    margin: 100px !important;
  }
  .b-sp_mt100 {
    margin-top: 100px !important;
  }
  .b-sp_mb100 {
    margin-bottom: 100px !important;
  }
  .b-sp_ml100 {
    margin-left: 100px !important;
  }
  .b-sp_mr100 {
    margin-right: 100px !important;
  }
  .b-sp_p100 {
    padding: 100px !important;
  }
  .b-sp_pt100 {
    padding-top: 100px !important;
  }
  .b-sp_pb100 {
    padding-bottom: 100px !important;
  }
  .b-sp_pl100 {
    padding-left: 100px !important;
  }
  .b-sp_pr100 {
    padding-right: 100px !important;
  }
  .b-sp_wpx100 {
    width: 100px !important;
  }
}
.b-d_ib {
  display: inline-block;
}

.b-pc_br {
  display: inline;
}
@media screen and (max-width: 768px) {
  .b-pc_br {
    display: none;
  }
}

.b-sp_br {
  display: none;
}
@media screen and (max-width: 768px) {
  .b-sp_br {
    display: inline;
  }
}

@media screen and (max-width: 768px) {
  .b-pc_only {
    display: none;
  }
}

.b-sp_only {
  display: none;
}
@media screen and (max-width: 768px) {
  .b-sp_only {
    display: inherit;
  }
}

.b-sr_only {
  display: none;
}

/************************************************

	text

*************************************************/
.b-center {
  text-align: center !important;
}

.b-left {
  text-align: left !important;
}

.b-right {
  text-align: right !important;
}

.b-small {
  font-size: 0.8em;
}

.b-big {
  font-size: 1.2em;
}

.b-bold {
  font-weight: bold;
}

.b-link {
  color: var(--blue);
  text-decoration: underline;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .b-link:hover {
    opacity: 0.7;
  }
}

.header {
  padding: 20px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  background: #fff;
}
@media screen and (max-width: 1070px) {
  .header {
    padding: 10px;
  }
}
.header .header__logo {
  margin-right: 40px;
}
@media screen and (max-width: 1070px) {
  .header .header__logo {
    width: 60%;
    max-width: 186.6%;
  }
}
.header .header__logo a {
  display: inline-block;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .header .header__logo a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1070px) {
  .header .header__logo img {
    vertical-align: middle;
  }
}
.header .header__upper {
  max-width: var(--contents_width);
  width: 100%;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1070px) {
  .header .header__lower {
    display: none;
  }
}
.header .gnav_lower {
  max-width: var(--contents_width);
  width: 100%;
  margin: 30px auto 6px;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
}
@media screen and (max-width: 1070px) {
  .header .gnav_lower {
    display: block;
    margin: 20px auto 10px;
  }
}
.header .gnav_lower > li {
  text-align: center;
}
.header .gnav_lower > li > a {
  display: inline-block;
  padding: 0 16px 2px;
  border-radius: 100vh;
  font-weight: bold;
  transition: all 0.3s;
}
@media screen and (max-width: 1070px) {
  .header .gnav_lower > li > a {
    padding: 8px 16px;
  }
}
@media (any-hover: hover) {
  .header .gnav_lower > li:not(.gnav_lower__dropdown) > a:hover {
    background-color: var(--logo_yellow);
    color: #fff;
  }
}
.header .gnav_lower .gnav_lower__dropdown > a {
  position: relative;
}
.header .gnav_lower .gnav_lower__dropdown > a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
  position: absolute;
  top: 51%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s;
}
.header .gnav_lower .gnav_lower__dropdown > a.is-opened::before {
  transform: translateY(-50%) rotate(225deg);
}
.header .gnav_lower .gnav_lower__dropmenu {
  display: none;
  position: absolute;
  top: 40px;
  width: 220px;
  background-color: #fff;
  padding: 10px 35px;
  box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1070px) {
  .header .gnav_lower .gnav_lower__dropmenu {
    display: block;
    position: relative;
    width: 100%;
    box-shadow: none;
    top: 0;
  }
}
.header .gnav_lower .gnav_lower__dropmenu li a {
  display: block;
  padding: 7px 0px;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .header .gnav_lower .gnav_lower__dropmenu li a:hover {
    opacity: 0.7;
  }
}
.header .gnav_lower .gnav_lower__dropmenu li a > span {
  position: relative;
  padding-right: 20px;
}
.header .gnav_lower .gnav_lower__dropmenu li a > span::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  position: absolute;
  top: 51%;
  right: 0;
  transform: translateY(-50%) rotate(315deg);
}
.gnav {
  margin-left: auto;
  font-size: 1.4rem;
  line-height: 1.6;
}
.gnav a,
.gnav button {
  transition: opacity 0.3s;
  display: inline-block;
}
@media (any-hover: hover) {
  .gnav a:hover,
  .gnav button:hover {
    opacity: 0.7;
  }
}
.gnav .gnav__button_sp_nav {
  display: none;
}
@media screen and (max-width: 1070px) {
  .gnav .gnav__button_sp_nav {
    display: block;
  }
}
.gnav .gnav__button_sp_nav.is-opened button span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.gnav .gnav__button_sp_nav.is-opened button span:nth-of-type(2) {
  opacity: 0;
}
.gnav .gnav__button_sp_nav.is-opened button span:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 1070px) {
  .gnav .gnav__button_sp_nav.is-opened + .gnav__contents .gnav__inner {
    transform: translateX(0);
  }
}
.gnav .gnav__button_sp_nav button {
  display: block;
  width: 36px;
  height: 24px;
  position: relative;
}
.gnav .gnav__button_sp_nav button span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text_color);
  position: absolute;
}
.gnav .gnav__button_sp_nav button span:nth-of-type(1) {
  top: 0;
  transition: top 0.3s, transform 0.3s;
}
.gnav .gnav__button_sp_nav button span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}
.gnav .gnav__button_sp_nav button span:nth-of-type(3) {
  top: 100%;
  transform: translateY(-100%);
  transition: top 0.3s, transform 0.3s;
}
@media screen and (max-width: 1070px) {
  .gnav .gnav__contents {
    position: absolute;
    width: 100%;
    top: 100%;
    right: 0;
    pointer-events: none;
    overflow: hidden;
    height: calc(100vh - 50px);
  }
}
.gnav .gnav__contents .gnav_lower {
  display: none;
}
@media screen and (max-width: 1070px) {
  .gnav .gnav__contents .gnav_lower {
    display: block;
  }
}
@media screen and (max-width: 1070px) {
  .gnav .gnav__inner {
    background: #f6f6f6;
    width: 100%;
    top: 100%;
    right: 0;
    padding: 20px;
    padding-top: 5px;
    max-height: calc(100vh - 50px);
    overflow: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform 0.3s;
    pointer-events: auto;
  }
}
.gnav .gnav__upper {
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1070px) {
  .gnav .gnav__upper {
    display: block;
  }
}
.gnav .gnav__upper__left {
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  font-size: 1.5rem;
  border-right: 1px solid #ccc;
}
@media screen and (max-width: 1070px) {
  .gnav .gnav__upper__left {
    border: none;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.gnav .gnav__upper__left > li {
  margin-right: 25px;
}
@media screen and (max-width: 1070px) {
  .gnav .gnav__upper__left > li {
    margin: 15px 15px 0;
  }
}
@media screen and (max-width: 1070px) {
  .gnav .gnav__upper__left > li a {
    text-decoration: underline;
  }
}
.gnav .gnav__upper__right {
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  margin-left: 30px;
}
@media screen and (max-width: 1070px) {
  .gnav .gnav__upper__right {
    display: block;
    margin-left: 0;
    margin-top: 20px;
  }
}
.gnav .gnav__upper__right > li {
  margin-right: 25px;
}
@media screen and (max-width: 1070px) {
  .gnav .gnav__upper__right > li {
    margin-right: 0;
    border-top: 1px solid #ccc;
  }
}
@media screen and (max-width: 1070px) {
  .gnav .gnav__upper__right > li a,
  .gnav .gnav__upper__right > li button {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
  }
}
.gnav .gnav__upper__right > li:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 1070px) {
  .gnav .gnav__upper__right > li:last-of-type {
    border-bottom: 1px solid #ccc;
  }
}
.gnav .gnav__lower {
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
@media screen and (max-width: 1070px) {
  .gnav .gnav__lower {
    flex-wrap: wrap;
    justify-content: initial;
  }
}
.gnav .gnav__lower > li {
  margin-right: 25px;
}
@media screen and (max-width: 1070px) {
  .gnav .gnav__lower > li {
    margin: 1%;
    width: 48%;
  }
}
.gnav .gnav__lower > li:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 1070px) {
  .gnav .gnav__lower > li:last-of-type {
    margin: 1%;
  }
}
@media screen and (max-width: 1070px) {
  .gnav .gnav__lower > li a {
    display: block;
    border: 1px solid #666;
    border-radius: 5px;
    padding: 7px 12px;
    text-align: center;
  }
}

.footer {
  background: var(--blue);
  color: #fff;
  padding: 13px 20px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 13px 15px;
  }
}
.footer .footer__inner {
  max-width: var(--contents_width);
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .footer .footer__inner {
    display: block;
  }
}
.footer .footer__nav > ul {
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer .footer__nav > ul {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer__nav > ul > li {
    text-align: center;
  }
}
.footer .footer__nav > ul > li:not(:last-of-type) {
  border-right: 1px solid #fff;
  margin-right: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .footer .footer__nav > ul > li:not(:last-of-type) {
    margin-bottom: 5px;
    margin-right: 0;
    padding-right: 0;
    border: none;
  }
}
.footer .footer__nav > ul > li > a {
  font-size: 1.4rem;
  line-height: 1.5;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .footer .footer__nav > ul > li > a:hover {
    opacity: 0.7;
  }
}
.footer .footer__copy {
  font-size: 1.2rem;
  line-height: 1.3;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .footer .footer__copy {
    margin-top: 20px;
    text-align: center;
    font-size: 1rem;
  }
}

.bridge_member_btn01 {
  position: fixed;
  right: 0;
  bottom: 0;
}
.bridge_member_btn01 a {
  color: #fff;
  background: var(--navy);
  font-weight: bold;
  text-align: center;
  width: 160px;
  padding: 16px;
  display: block;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .bridge_member_btn01 a:hover {
    opacity: 0.7;
  }
}
.bridge_member_btn01 a span {
  position: relative;
  padding-left: 22px;
  display: inline-block;
}
.bridge_member_btn01 a span::before {
  content: "";
  display: block;
  background: url(../images/ico_signup_wh.svg) no-repeat center/contain;
  width: 17px;
  height: 17px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.p-top .mv {
  background: var(--blue);
  padding: 50px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-top .mv {
    padding: 20px 15px;
  }
}
.p-top .mv .mv__head {
  font-size: 19rem;
  height: 157px;
  opacity: 0.05;
  color: transparent;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 20px;
  background: url("/images/pickup.svg") repeat-x 20px bottom/600px 132px;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-top .mv .mv__head {
    font-size: 5rem;
    background-size: 400px 88px;
  }
}
.p-top .mv .mv__slide__inner {
  max-width: var(--contents_width);
  width: 100%;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .mv .mv__slide__inner {
    flex-direction: column;
  }
}
.p-top .mv .mv__box {
  width: 44%;
}
@media screen and (max-width: 768px) {
  .p-top .mv .mv__box {
    width: 100%;
    order: 2;
    margin-top: 15px;
    position: relative;
  }
}
.p-top .mv .mv__box .mv__box__link {
  display: block;
  margin-top: 17px;
}
@media screen and (max-width: 768px) {
  .p-top .mv .mv__box .mv__box__link {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .p-top .mv .mv__box .b-btn_category {
    margin-right: 55px;
  }
}
.p-top .mv .mv__box .b-btn_category a {
  background: var(--navy);
  border-color: var(--navy);
}
@media (any-hover: hover) {
  .p-top .mv .mv__box .b-btn_category a:hover {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
  }
}
.p-top .mv .mv__title {
  font-size: 3.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  .p-top .mv .mv__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top .mv .mv__title {
    font-size: 2.2rem;
  }
}
.p-top .mv .mv__text {
  font-size: 1.4rem;
  margin-top: 24px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-top .mv .mv__text {
    margin-top: 15px;
    font-size: 1.3rem;
  }
}
.p-top .mv .mv__footer {
  margin-top: 24px;
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .p-top .mv .mv__footer {
    margin-top: 20px;
  }
}
.p-top .mv .mv__footer .b-tags {
  margin-right: 20px;
}
.p-top .mv .mv__footer .b-tags li {
  color: #fff;
}
.p-top .mv .mv__footer .b-btn_favorite {
  margin-left: auto;
  margin-bottom: 3px;
}
@media screen and (max-width: 768px) {
  .p-top .mv .mv__footer .b-btn_favorite {
    position: absolute;
    top: 4px;
    right: 0;
  }
}
.p-top .mv .mv__footer .b-btn_favorite button {
  color: #fff;
}
.p-top .mv .mv__footer .b-btn_favorite .b-btn_favorite__ico svg {
  stroke: #fff;
}
.p-top .mv .mv__footer .b-btn_favorite.is-checked .b-btn_favorite__ico svg {
  fill: #fff;
}
.p-top .mv .mv__photo {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-top .mv .mv__photo {
    width: 100%;
    order: 1;
  }
}
.p-top .mv .mv__photo a {
  display: block;
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
  background: #000;
}
.p-top .mv .mv__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top .mv .mv__control {
  max-width: var(--contents_width);
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.p-top .mv .mv__control .mv__control__dots {
  position: relative;
}
.p-top .mv .mv__control .slick-dots {
  position: relative;
  bottom: inherit;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.p-top .mv .mv__control .slick-dots li {
  margin: 0;
}
.p-top .mv .mv__control .slick-dots li button:before {
  font-size: 8px;
  color: #fff;
  opacity: 0.6;
}
.p-top .mv .mv__control .slick-dots li.slick-active button:before {
  opacity: 1;
}
@media (any-hover: hover) {
  .p-top .mv .mv__control .slick-dots li:hover {
    cursor: pointer;
  }
}
.p-top .mv .mv__control .mv__control__arrow {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  position: relative;
}
@media (any-hover: hover) {
  .p-top .mv .mv__control .mv__control__arrow:hover {
    cursor: pointer;
  }
}
.p-top .mv .mv__control .slick-arrow {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  transform: rotate(45deg);
}
.p-top .mv .mv__control .slick-arrow.prev-arrow {
  transform: rotate(225deg);
}
.p-top .headline {
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .p-top .headline {
    padding-bottom: 60px;
  }
}
.p-top .headline .headline__title {
  font-size: 12rem;
  font-size: min(8.5714285714vw, 120px);
  font-family: "Oswald", var(--font_gothic);
  line-height: 1.1;
  font-weight: bold;
  color: var(--logo_blue);
  opacity: 0.15;
}
@media screen and (max-width: 768px) {
  .p-top .headline .headline__title {
    font-size: 6rem;
  }
}
.p-top .headline .headline__title-ja {
  font-weight: bold;
  padding-bottom: 5px;
  font-size: 2.4rem;
  margin-top: -5px;
  color: #fff;
  position: relative;
}
.p-top .headline .headline__title-ja::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.p-top .headline .headline__title-ja span {
  position: relative;
  background: #a6d0ff;
  padding-right: 10px;
  z-index: 1;
}
.p-top .headline .headline__title02 {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: bold;
  margin-top: 20px;
  color: var(--blue);
}
@media screen and (max-width: 768px) {
  .p-top .headline .headline__title02 {
    font-size: 2.6rem;
    margin-top: 15px;
  }
}
.p-top .headline .headline__list {
  margin-top: 40px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .p-top .headline .headline__list {
    margin-top: 20px;
    padding: 0 15px;
  }
}
.p-top .headline .headline__list .b-cards01 {
  max-width: var(--contents_width);
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .p-top .headline .headline__list .b-cards01 {
    margin-top: 20px;
  }
}
.p-top .headline .headline__head {
  display: -webkit-flex;
  display: flex;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
.p-top .headline .headline__head .headline__head__col_l {
  display: -webkit-flex;
  display: flex;
  align-items: baseline;
}
.p-top .headline .headline__head .headline__head__col_l .headline__itle02 {
  margin-right: 10px;
}
.p-top .headline .headline__head .headline__head__member {
  font-weight: bold;
  color: var(--member_red);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .headline .headline__head .headline__head__member {
    font-size: 1.3rem;
  }
}
.p-top .headline .headline__head .headline__head__member::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--member_red);
  position: absolute;
  top: 0;
  right: -7px;
}
@media screen and (max-width: 768px) {
  .p-top .headline .headline__head .headline__head__member::after {
    width: 5px;
    height: 5px;
  }
}
.p-top .headline .headline__head .headline__head__more {
  margin-left: auto;
}
.p-top .headline .headline__head .headline__head__more a {
  display: inline-block;
  line-height: 1.3;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-top .headline .headline__head .headline__head__more a:hover {
    opacity: 0.7;
  }
}
.p-top .news {
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .p-top .news {
    padding: 0 15px;
  }
}
.p-top .news .b-timeline01 {
  margin-top: 25px;
}
.p-top .news .b-btn03 {
  margin-top: 20px;
}
.p-top .recommendation {
  margin-top: 25px;
  background: var(--blue);
  padding: 20px 30px 35px;
  color: #fff;
}
@media screen and (max-width: 1070px) {
  .p-top .recommendation {
    border-radius: 10px;
    margin-top: 40px;
    padding: 15px 15px 20px;
  }
}
.p-top .recommendation .recommendation__title {
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-top .recommendation .recommendation__title {
    font-size: 1.8rem;
  }
}
.p-top .recommendation .b-cards02 {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-top .recommendation .b-cards02 {
    margin-top: 15px;
  }
}
.p-top .recommendation .b-btn02 {
  margin-top: 20px;
}
.p-top .recommendation .b-timeline02 {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-top .recommendation .b-timeline02 {
    margin-top: 10px;
  }
}
.p-top .section.section--gray {
  background: var(--bg_gray);
}
.p-top .section .section__inner {
  max-width: var(--contents_width);
  margin: 0 auto;
  position: relative;
  padding: 65px 0 70px;
}
@media screen and (max-width: 768px) {
  .p-top .section .section__inner {
    padding: 30px 0 45px;
  }
}
.p-top .section .section__title01 {
  font-size: 12rem;
  font-family: "Oswald", var(--font_gothic);
  line-height: 1.1;
  font-weight: bold;
  color: var(--blue);
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-63%);
}
@media screen and (max-width: 768px) {
  .p-top .section .section__title01 {
    font-size: 6rem;
  }
}
.p-top .section .section__title02 {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: bold;
  margin-top: 20px;
  color: var(--blue);
}
@media screen and (max-width: 768px) {
  .p-top .section .section__title02 {
    font-size: 2.6rem;
    margin-top: 15px;
  }
}
.p-top .section .section__2col {
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1070px) {
  .p-top .section .section__2col {
    display: block;
  }
}
.p-top .section .section__2col .section__col_l {
  width: 68%;
}
@media screen and (max-width: 1070px) {
  .p-top .section .section__2col .section__col_l {
    width: 100%;
  }
}
.p-top .section .section__2col .section__col_r {
  width: 27.2%;
}
@media screen and (max-width: 1070px) {
  .p-top .section .section__2col .section__col_r {
    width: 100%;
  }
}
.p-top .section .section__head {
  display: -webkit-flex;
  display: flex;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
.p-top .section .section__head .section__head__col_l {
  display: -webkit-flex;
  display: flex;
  align-items: baseline;
}
.p-top .section .section__head .section__head__col_l .section__title02 {
  margin-right: 10px;
}
.p-top .section .section__head .section__head__member {
  font-weight: bold;
  color: var(--member_red);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section .section__head .section__head__member {
    font-size: 1.3rem;
  }
}
.p-top .section .section__head .section__head__member::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--member_red);
  position: absolute;
  top: 0;
  right: -7px;
}
@media screen and (max-width: 768px) {
  .p-top .section .section__head .section__head__member::after {
    width: 5px;
    height: 5px;
  }
}
.p-top .section .section__head .section__head__more {
  margin-left: auto;
}
.p-top .section .section__head .section__head__more a {
  display: inline-block;
  line-height: 1.3;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-top .section .section__head .section__head__more a:hover {
    opacity: 0.7;
  }
}
.p-top .sec03 {
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .p-top .sec03 {
    padding: 0 15px;
  }
}
.p-top .sec03 .section__inner {
  padding: 40px 0 70px;
}
@media screen and (max-width: 768px) {
  .p-top .sec03 .section__inner {
    padding: 20px 0 45px;
  }
}
.p-top .sec03 .sec03__inner_section + .sec03__inner_section {
  margin-top: 35px;
}
.p-top .sec03 .b-cards03 {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .p-top .sec03 .b-cards03 {
    margin-top: 15px;
  }
}
.p-top .sec03 .b-tags {
  margin-top: 5px;
}
.p-top .sec03 .b-btn03 {
  margin-top: 25px;
}
.p-top .qa {
  padding: 0 20px;
}
.p-top .qa .section__inner {
  padding: 40px 0 100px;
}
@media screen and (max-width: 768px) {
  .p-top .qa .section__inner {
    padding: 20px 0 50px;
  }
}
@media screen and (max-width: 768px) {
  .p-top .qa {
    padding: 0 15px;
  }
}
.p-top .qa .b-timeline01 {
  margin-top: 25px;
}
.p-top .qa .b-btn03 {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-top .qa .b-btn03 {
    margin-top: 30px;
  }
}
.p-top .qa .b-btn04 {
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .p-top .qa .b-btn04 {
    margin-top: 20px;
  }
}
.p-top .ranking {
  margin-top: 30px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .p-top .ranking {
    margin-top: 40px;
    padding: 0;
  }
}
.p-top .ranking .ranking__title {
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: center;
  font-weight: bold;
  color: var(--logo_blue);
}
@media screen and (max-width: 768px) {
  .p-top .ranking .ranking__title {
    font-size: 2rem;
  }
}
.p-top .ranking .ranking__list {
  margin-top: 15px;
  counter-reset: ranking;
}
.p-top .ranking .ranking__list > li {
  border-top: 1px solid #ccc;
  list-style: none;
  position: relative;
}
.p-top .ranking .ranking__list > li::before {
  counter-increment: ranking;
  content: counter(ranking);
  font-weight: bold;
  color: var(--blue);
  line-height: 1;
  font-size: 7rem;
  opacity: 0.4;
  position: absolute;
  top: 13px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-top .ranking .ranking__list > li::before {
    font-size: 4rem;
    top: 10px;
  }
}
.p-top .ranking .ranking__list > li:last-of-type {
  border-bottom: 1px solid #ccc;
}
.p-top .ranking .ranking__list > li > a {
  display: block;
  padding: 20px 0 20px 55px;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-top .ranking .ranking__list > li > a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .p-top .ranking .ranking__list > li > a {
    padding: 10px 0 10px 35px;
  }
}
.p-top .ranking .ranking__sttl {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-top .ranking .ranking__sttl {
    font-size: 1.5rem;
  }
}
.p-top .ranking .ranking__text {
  font-size: 1.3rem;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .p-top .ranking .ranking__text {
    font-size: 1.2rem;
  }
}
.p-top .top-2col {
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
}
@media screen and (max-width: 1070px) {
  .p-top .top-2col {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p-top .top-2col {
    padding: 0;
  }
}
.p-top .top-2col .top-2col__col:first-of-type {
  width: 66%;
}
@media screen and (max-width: 1070px) {
  .p-top .top-2col .top-2col__col:first-of-type {
    width: 100%;
    order: 2;
  }
}
.p-top .top-2col .top-2col__col:last-of-type {
  width: 33%;
}
@media screen and (max-width: 1070px) {
  .p-top .top-2col .top-2col__col:last-of-type {
    width: 100%;
    order: 1;
  }
}
.p-top .bg-blue {
  background: #a6d0ff;
  margin-top: 20px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .p-top .bg-blue {
    padding: 10px;
  }
}
.p-top .b-cards04 .b-cards04__card:nth-of-type(n + 7) {
  display: none;
}
.p-top .b-cards04.is-opened .b-cards04__card:nth-of-type(n + 7) {
  display: block;
}
.p-top .news .b-ico_arrow_b::before {
  transition: transform 0.2s;
}
.p-top .news .news__button.is-opened .b-ico_arrow_b::before {
  transform: translateY(-20%) rotate(225deg);
}
.p-top .about {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1070px) {
  .p-top .about {
    display: block;
  }
}
.p-top .about .about__left {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 50%;
  background-color: var(--bg_gray);
  padding: 104px 4%;
}
@media screen and (max-width: 1070px) {
  .p-top .about .about__left {
    width: 100%;
    padding: 60px 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-top .about .about__left {
    display: block;
  }
}
.p-top .about .about__left figure {
  text-align: center;
}
.p-top .about .about__left .about__box {
  margin-left: 5%;
  flex-shrink: 0;
}
@media screen and (max-width: 1070px) {
  .p-top .about .about__left .about__box {
    width: 60%;
    margin-left: 0;
    flex-shrink: inherit;
  }
}
@media screen and (max-width: 768px) {
  .p-top .about .about__left .about__box {
    width: 100%;
  }
}
.p-top .about .about__right {
  position: relative;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  width: 50%;
  background-color: rgba(226, 236, 247, 0.6);
  padding: 104px 70px;
  overflow: hidden;
}
@media screen and (max-width: 1070px) {
  .p-top .about .about__right {
    width: 100%;
    padding: 60px 20px;
  }
}
.p-top .about .about__right::before {
  position: absolute;
  content: "";
  width: 680px;
  height: 450px;
  right: 0;
  background: url(../../../images/img_about02.png) no-repeat center/contain;
}
@media screen and (max-width: 1070px) {
  .p-top .about .about__right::before {
    width: 420px;
    height: 280px;
    right: 0;
    left: -50px;
  }
}
.p-top .about .about__box {
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1070px) {
  .p-top .about .about__box {
    width: 100%;
    margin-top: 20px;
  }
}
.p-top .about .about__title {
  font-size: 3.6rem;
  color: var(--blue);
}
@media screen and (max-width: 1400px) {
  .p-top .about .about__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1070px) {
  .p-top .about .about__title {
    font-size: 2.6rem;
  }
}
.p-top .about .about__text {
  margin: 30px 0;
  font-size: 1.8rem;
}
@media screen and (max-width: 1070px) {
  .p-top .about .about__text {
    margin: 10px 0 30px;
    font-size: 1.6rem;
  }
}
.p-top .local {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  background: var(--blue);
  color: #fff;
  margin-top: 80px;
}
@media screen and (max-width: 1070px) {
  .p-top .local {
    display: block;
    margin-top: 0;
  }
}
.p-top .local .local__left {
  width: 36.46%;
  flex-shrink: 0;
  min-width: 600px;
}
@media screen and (max-width: 1070px) {
  .p-top .local .local__left {
    width: 100%;
    min-width: inherit;
  }
}
@media screen and (max-width: 1070px) {
  .p-top .local .local__left img {
    width: 100%;
  }
}
.p-top .local .local__right {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  width: 63.54%;
}
@media screen and (max-width: 1070px) {
  .p-top .local .local__right {
    justify-content: center;
    width: 100%;
    padding: 60px 20px 80px;
  }
}
.p-top .local .local__box {
  width: fit-content;
  padding: 0 20%;
}
@media screen and (max-width: 1400px) {
  .p-top .local .local__box {
    padding: 0 10%;
  }
}
@media screen and (max-width: 1070px) {
  .p-top .local .local__box {
    padding: 0;
  }
}
.p-top .local .local__title {
  font-size: 4.2rem;
  padding-bottom: 9%;
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 1400px) {
  .p-top .local .local__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 1070px) {
  .p-top .local .local__title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 1070px) {
  .p-top .local .local__title br {
    display: none;
  }
}
@media screen and (max-width: 1070px) {
  .p-top .local .local__2col {
    display: flex;
    gap: 30px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-top .local .local__2col {
    flex-direction: column;
  }
}
.p-top .local .local__collab {
  width: fit-content;
  margin-top: 9%;
}
@media screen and (max-width: 1070px) {
  .p-top .local .local__collab {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-top .local .local__collab {
    width: 100%;
  }
}
.p-top .local .local__catalog {
  width: fit-content;
  margin-top: 8%;
}
@media screen and (max-width: 1070px) {
  .p-top .local .local__catalog {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-top .local .local__catalog {
    width: 100%;
  }
}
.p-top .local .local__label {
  font-size: 1.8rem;
  font-weight: bold;
}
.p-top .local .b-btn01 {
  margin-top: 15px;
  width: 240px;
}
@media screen and (max-width: 768px) {
  .p-top .local .b-btn01 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-top .local .b-btn01 button {
    max-width: 100%;
  }
}
.p-top .footer {
  margin-top: 96px;
}

.p-login main {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 196px - 54px);
}
.p-login .login_box {
  max-width: 690px;
  margin: 20px auto;
  background: var(--bg_gray);
  padding: 40px 40px 30px;
}
@media screen and (max-width: 768px) {
  .p-login .login_box {
    margin-top: 40px;
    padding: 30px;
  }
}
.p-login .login_box .login_box__row {
  max-width: 390px;
  margin: 0 auto;
  position: relative;
}
.p-login .login_box .login_box__row + .login_box__row {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-login .login_box .login_box__row + .login_box__row {
    margin-top: 15px;
  }
}
.p-login .login_box .login_box__label {
  font-size: 1.4rem;
  position: absolute;
  top: 3px;
  right: calc(100% + 10px);
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  .p-login .login_box .login_box__label {
    position: static;
  }
}
.p-login .login_box .login_box__text {
  font-size: 1.4rem;
  margin-top: 20px;
  text-align: center;
}
.p-login .login_box .b-btn01 {
  margin-top: 30px;
}
.p-login .title {
  text-align: center;
  font-size: 2.8rem;
  color: var(--blue);
  line-height: 1.3;
  font-weight: bold;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-login .title {
    margin-top: 30px;
    font-size: 2.2rem;
  }
}
.p-login .entry_box {
  max-width: 990px;
  margin: 20px auto 0;
  display: -webkit-flex;
  display: flex;
  background: var(--bg_gray);
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .p-login .entry_box {
    display: block;
    padding-top: 15px;
  }
}
.p-login .entry_box .entry_box__col {
  width: 50%;
  padding: 10px 40px;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .p-login .entry_box .entry_box__col {
    width: 100%;
    padding: 10px 20px;
  }
}
.p-login .entry_box .entry_box__col:last-child {
  border-left: 1px solid #D9D9D9;
}
@media screen and (max-width: 768px) {
  .p-login .entry_box .entry_box__col:last-child {
    border-left: none;
    border-top: 1px solid #D9D9D9;
    margin-top: 20px;
    padding-top: 20px;
  }
}
.p-login .entry_box .entry_box__title {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-login .entry_box .entry_box__title {
    font-size: 1.8rem;
  }
}
.p-login .entry_box .entry_box__text {
  margin-top: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-login .entry_box .entry_box__text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.p-login .entry_box .b-btn01 {
  margin-top: auto;
}
.p-login .footer {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .p-login .footer {
    margin-top: 50px;
  }
}

.p-list .list {
  margin: 80px auto 0;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .p-list .list {
    margin: 40px auto 0;
    padding: 0 15px;
  }
}
.p-list .list .b-cards01 {
  margin: 0 auto;
  max-width: var(--contents_width);
}
.p-list .list .b-cards01 .b-card__thmbnail a {
  padding-bottom: 0;
}
.p-list .b-pagenation {
  margin-top: 85px;
}
@media screen and (max-width: 768px) {
  .p-list .b-pagenation {
    margin-top: 45px;
  }
}
.p-list .footer {
  margin-top: 85px;
}
@media screen and (max-width: 768px) {
  .p-list .footer {
    margin-top: 45px;
  }
}

.p-detail .mv {
  background: var(--blue);
  padding: 50px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-detail .mv {
    padding: 40px 15px 50px;
  }
}
.p-detail .mv .mv__head {
  font-size: 19rem;
  height: 157px;
  opacity: 0.05;
  color: transparent;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 20px;
  background: url("/images/pickup.svg") repeat-x 20px bottom/600px 132px;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-detail .mv .mv__head {
    font-size: 5rem;
    background-size: 400px 88px;
  }
}
.p-detail .mv .mv__inner {
  max-width: var(--detail_width);
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-detail .mv .mv__inner {
    flex-direction: column;
  }
}
.p-detail .mv .mv__box {
  width: 44%;
}
@media screen and (max-width: 768px) {
  .p-detail .mv .mv__box {
    width: 100%;
    order: 2;
    margin-top: 15px;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .p-detail .mv .mv__box .b-btn_category {
    margin-right: 55px;
  }
}
.p-detail .mv .mv__box .b-btn_category a {
  background: var(--navy);
}
@media (any-hover: hover) {
  .p-detail .mv .mv__box .b-btn_category a:hover {
    background: #fff;
    color: var(--navy);
  }
}
.p-detail .mv .mv__box.full {
  width: 100%;
}
.p-detail .mv .mv__title {
  font-size: 2.4rem;
  line-height: 1.5;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .p-detail .mv .mv__title {
    font-size: 2rem;
    margin-top: 15px;
  }
}
.p-detail .mv .mv__text {
  font-size: 1.4rem;
  margin-top: 25px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-detail .mv .mv__text {
    margin-top: 15px;
    font-size: 1.3rem;
  }
}
.p-detail .mv .mv__footer {
  margin-top: 30px;
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .p-detail .mv .mv__footer {
    margin-top: 20px;
  }
}
.p-detail .mv .mv__footer .b-tags {
  margin-right: 20px;
}
.p-detail .mv .mv__footer .b-tags li {
  color: #fff;
}
.p-detail .mv .mv__footer .b-btn_favorite {
  margin-left: auto;
  margin-bottom: 3px;
}
@media screen and (max-width: 768px) {
  .p-detail .mv .mv__footer .b-btn_favorite {
    position: absolute;
    top: 4px;
    right: 0;
  }
}
.p-detail .mv .mv__footer .b-btn_favorite button {
  color: #fff;
}
.p-detail .mv .mv__footer .b-btn_favorite .b-btn_favorite__ico svg {
  stroke: #fff;
}
.p-detail .mv .mv__footer .b-btn_favorite.is-checked .b-btn_favorite__ico svg {
  fill: #fff;
}
.p-detail .mv .mv__photo {
  width: 50%;
  display: block;
  padding-bottom: 28.125%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-detail .mv .mv__photo {
    width: 100%;
    order: 1;
    padding-bottom: 56.25%;
  }
}
.p-detail .mv .mv__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-detail .detail_1col {
  margin: 60px auto 0;
  max-width: var(--detail_width);
}
.p-detail .detail_2col {
  margin: 60px auto 0;
  max-width: var(--detail_width);
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-detail .detail_2col {
    margin: 30px auto 0;
    display: block;
  }
}
.p-detail .detail_2col .detail_2col__col_l {
  width: 63%;
}
@media screen and (max-width: 768px) {
  .p-detail .detail_2col .detail_2col__col_l {
    width: 100%;
  }
}
.p-detail .detail_2col .detail_2col__col_r {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .p-detail .detail_2col .detail_2col__col_r {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-detail .edit {
    font-size: 1.4rem;
  }
}
.p-detail .edit p {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-detail .edit p {
    margin-bottom: 35px;
  }
}
.p-detail .edit h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-detail .edit h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}
.p-detail .edit h2:not(:first-child) {
  padding-top: 50px;
  border-top: 1px solid var(--gray);
}
@media screen and (max-width: 768px) {
  .p-detail .edit h2:not(:first-child) {
    padding-top: 35px;
  }
}
.p-detail .edit h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
  position: relative;
  padding-left: 30px;
}
.p-detail .edit h3::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gray);
  position: absolute;
  top: 0.8em;
  left: 0;
}
.p-detail .edit h4 {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}
.p-detail .edit h4::before {
  content: "";
  display: block;
  width: 0.6em;
  height: 0.6em;
  background: var(--text_color);
  position: absolute;
  top: 0.85em;
  left: 0;
  transform: translateY(-50%);
}
.p-detail .edit h5 {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}
.p-detail .edit h5::before {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background: var(--text_color);
  position: absolute;
  top: 0.85em;
  left: 0;
  transform: translateY(-50%);
}
.p-detail .edit h6 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 10px;
}
.p-detail .edit a {
  color: var(--link_orange);
  text-decoration: underline;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-detail .edit a:hover {
    opacity: 0.7;
  }
}
.p-detail .edit ul {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-detail .edit ul {
    margin-bottom: 35px;
  }
}
.p-detail .edit ol {
  margin-bottom: 50px;
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  .p-detail .edit ol {
    margin-bottom: 35px;
  }
}
.p-detail .edit table {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-detail .edit table {
    margin-bottom: 35px;
  }
}
.p-detail .edit table th,
.p-detail .edit table td {
  padding: 10px 15px;
}
.p-detail .edit table th {
  background: var(--blue);
  color: #fff;
  border-bottom: 4px double;
}
.p-detail .edit table tbody tr {
  border-bottom: 1px solid;
}
.p-detail .link_box {
  background: var(--blue);
  color: #fff;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-detail .link_box {
    margin-top: 40px;
  }
}
.p-detail .link_box .link_box__row {
  padding: 15px 20px;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-detail .link_box .link_box__row {
    display: block;
  }
}
.p-detail .link_box .link_box__row + .link_box__row {
  border-top: 1px dotted #fff;
}
.p-detail .link_box .link_box__row .link_box__title {
  font-weight: bold;
  margin-right: 40px;
  min-width: 100px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-detail .link_box .link_box__row .link_box__title {
    font-size: 1.5rem;
    margin-right: 0;
  }
}
.p-detail .link_box .link_box__row .link_box__contents {
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .p-detail .link_box .link_box__row .link_box__contents {
    font-size: 1.5rem;
    margin-top: 5px;
  }
}
.p-detail .link_box .link_box__row .link_box__contents a {
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-detail .link_box .link_box__row .link_box__contents a:hover {
    opacity: 0.7;
  }
}
.p-detail .b-btn01 {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-detail .b-btn01 {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-detail .relate {
    margin-top: 60px;
  }
}
.p-detail .relate .relate__title {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
  background: var(--blue);
  text-align: center;
  padding: 12px;
}
@media screen and (max-width: 768px) {
  .p-detail .relate .relate__title {
    font-size: 1.8rem;
    padding: 10px;
  }
}
.p-detail .relate .relate__list {
  background: var(--bg_gray);
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .p-detail .relate .relate__list {
    padding: 10px;
  }
}
.p-detail .relate .relate__row > a {
  display: block;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-detail .relate .relate__row > a:hover {
    opacity: 0.7;
  }
}
.p-detail .relate .relate__row + .relate__row {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray);
}
@media screen and (max-width: 768px) {
  .p-detail .relate .relate__row + .relate__row {
    margin-top: 15px;
    padding-top: 15px;
  }
}
.p-detail .relate .relate__date {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-detail .relate .relate__date {
    font-size: 1.4rem;
  }
}
.p-detail .relate .relate__sttl {
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .p-detail .relate .relate__sttl {
    font-size: 1.4rem;
  }
}
.p-detail .footer {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .p-detail .footer {
    margin-top: 50px;
  }
}

.p-regist .header_emesg {
  color: var(--member_red);
}
.p-regist .error {
  background-color: #f7d0d0;
}
.p-regist .regist_form {
  margin-top: 55px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .p-regist .regist_form {
    margin-top: 35px;
    padding: 0 15px;
  }
}
.p-regist .regist_form .regist_form__inner {
  max-width: 970px;
  margin: 0 auto;
}
.p-regist .regist_form .regist_form__text {
  width: fit-content;
  margin: 0 auto;
}
.p-regist .regist_form .b-form {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-regist .regist_form .b-form {
    margin-top: 25px;
  }
}
.p-regist .regist_form .caution {
  font-size: 80%;
  line-height: 1.5;
  display: block;
  padding-top: 5px;
}
.p-regist .footer {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .p-regist .footer {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .p-regist.p-regist--confirm .b-form .b-form__box {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
  }
}
.p-regist.p-regist--confirm .b-form .b-form__label_box {
  padding: 15px 10px 15px 0;
  width: 200px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-regist.p-regist--confirm .b-form .b-form__label_box {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-regist.p-regist--confirm .b-form .b-form__label {
    font-size: 1.3rem;
  }
}
.p-regist.p-regist--confirm .b-form .b-form__input_box {
  padding: 15px 0 15px 25px;
}
@media screen and (max-width: 768px) {
  .p-regist.p-regist--confirm .b-form .b-form__input_box {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-regist.p-regist--confirm .b-form .b-form__sub_input_box {
    display: -webkit-flex;
    display: flex;
    align-items: baseline;
  }
}
.p-regist.p-regist--confirm .b-form .b-form__sub_input_box + .b-form__sub_input_box {
  margin-top: 10px;
}
.p-regist.p-regist--confirm .b-form .b-form__sub_input_box .b-form__sub_input_box__col_l {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .p-regist.p-regist--confirm .b-form .b-form__sub_input_box .b-form__sub_input_box__col_l {
    width: 6em;
    padding-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-regist.p-regist--confirm .b-form .b-form__sub_input_box .b-form__sub_input_box__col_r {
    margin-top: 0;
  }
}
.p-regist.p-regist--complete .regist_form .regist_form__inner {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 54px - 100px - 55px - 21px - 168px - 98px);
}
@media screen and (max-width: 768px) {
  .p-regist.p-regist--complete .regist_form .regist_form__inner {
    min-height: calc(100vh - 120px - 50px - 35px - 18px - 5px - 93px - 68px);
  }
}
.p-regist.p-regist--complete .regist_form .regist_form__msg_box {
  text-align: center;
}
.p-regist.p-regist--complete .regist_form .regist_form__msg_box .regist_form__msg_box__text01 {
  font-size: 1.8rem;
  font-weight: bold;
}
.p-regist.p-regist--complete .regist_form .regist_form__msg_box .regist_form__msg_box__text02 {
  margin-top: 10px;
}
.p-regist.p-regist--complete .regist_form .regist_form__msg_box .b-btn01 {
  margin-top: 40px;
}

.p-page .detail_col {
  margin: 60px auto 0;
  max-width: var(--detail_width);
}
.p-page .detail_2col {
  margin: 60px auto 0;
  max-width: var(--detail_width);
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-page .detail_2col {
    margin: 30px auto 0;
    display: block;
  }
}
.p-page .detail_2col .detail_2col__col_l {
  width: 63%;
}
@media screen and (max-width: 768px) {
  .p-page .detail_2col .detail_2col__col_l {
    width: 100%;
  }
}
.p-page .detail_2col .detail_2col__col_r {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .p-page .detail_2col .detail_2col__col_r {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-page .edit {
    font-size: 1.4rem;
  }
}
.p-page .edit p {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-page .edit p {
    margin-bottom: 35px;
  }
}
.p-page .edit h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-page .edit h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}
.p-page .edit h2:not(:first-child) {
  padding-top: 50px;
  border-top: 1px solid var(--gray);
}
@media screen and (max-width: 768px) {
  .p-page .edit h2:not(:first-child) {
    padding-top: 35px;
  }
}
.p-page .edit h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
  position: relative;
  padding-left: 30px;
}
.p-page .edit h3::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gray);
  position: absolute;
  top: 0.8em;
  left: 0;
}
.p-page .edit h4 {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}
.p-page .edit h4::before {
  content: "";
  display: block;
  width: 0.6em;
  height: 0.6em;
  background: var(--text_color);
  position: absolute;
  top: 0.85em;
  left: 0;
  transform: translateY(-50%);
}
.p-page .edit h5 {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}
.p-page .edit h5::before {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background: var(--text_color);
  position: absolute;
  top: 0.85em;
  left: 0;
  transform: translateY(-50%);
}
.p-page .edit h6 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 10px;
}
.p-page .edit a {
  color: var(--link_orange);
  text-decoration: underline;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-page .edit a:hover {
    opacity: 0.7;
  }
}
.p-page .edit ul {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-page .edit ul {
    margin-bottom: 35px;
  }
}
.p-page .edit ol {
  margin-bottom: 50px;
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  .p-page .edit ol {
    margin-bottom: 35px;
  }
}
.p-page .edit table {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-page .edit table {
    margin-bottom: 35px;
  }
}
.p-page .edit table th,
.p-page .edit table td {
  padding: 10px 15px;
}
.p-page .edit table th {
  background: var(--blue);
  color: #fff;
  border-bottom: 4px double;
}
.p-page .edit table tbody tr {
  border-bottom: 1px solid;
}
.p-page .link_box {
  background: var(--blue);
  color: #fff;
  margin-top: 50px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-page .link_box {
    margin-top: 40px;
  }
}
.p-page .link_box .link_box__row {
  padding: 15px 20px;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-page .link_box .link_box__row {
    display: block;
  }
}
.p-page .link_box .link_box__row + .link_box__row {
  border-top: 1px dotted #fff;
}
.p-page .link_box .link_box__row .link_box__title {
  font-weight: bold;
  margin-right: 40px;
  min-width: 100px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-page .link_box .link_box__row .link_box__title {
    font-size: 1.5rem;
    margin-right: 0;
  }
}
.p-page .link_box .link_box__row .link_box__contents {
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .p-page .link_box .link_box__row .link_box__contents {
    font-size: 1.5rem;
    margin-top: 5px;
  }
}
.p-page .link_box .link_box__row .link_box__contents a {
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-page .link_box .link_box__row .link_box__contents a:hover {
    opacity: 0.7;
  }
}
.p-page .b-btn01 {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-page .b-btn01 {
    margin-top: 30px;
  }
}
.p-page .footer {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .p-page .footer {
    margin-top: 50px;
  }
}

.p-mypage .mypage_date {
  margin-top: 55px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .p-mypage .mypage_date {
    margin-top: 35px;
    padding: 0 15px;
  }
}
.p-mypage .mypage_date .mypage_date__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.p-mypage .mypage_date .mypage_date__text {
  width: fit-content;
  margin: 0 auto;
}
.p-mypage .mypage_date .mypage_date__title {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-mypage .mypage_date .mypage_date__title {
    font-size: 2rem;
  }
}
.p-mypage .mypage_date .b-form {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-mypage .mypage_date .b-form .b-form__box {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-mypage .mypage_date .b-form .b-form__box:first-child {
    border-top: 1px solid #ccc;
    padding-top: 20px;
  }
}
.p-mypage .mypage_date .b-form .b-form__label_box {
  padding: 15px 10px 15px 0;
  width: 200px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-mypage .mypage_date .b-form .b-form__label_box {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-mypage .mypage_date .b-form .b-form__label {
    font-size: 1.3rem;
  }
}
.p-mypage .mypage_date .b-form .b-form__input_box {
  padding: 15px 0 15px 25px;
}
@media screen and (max-width: 768px) {
  .p-mypage .mypage_date .b-form .b-form__input_box {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-mypage .mypage_date .b-form .b-form__sub_input_box {
    display: -webkit-flex;
    display: flex;
    align-items: baseline;
  }
}
.p-mypage .mypage_date .b-form .b-form__sub_input_box + .b-form__sub_input_box {
  margin-top: 10px;
}
.p-mypage .mypage_date .b-form .b-form__sub_input_box .b-form__sub_input_box__col_l {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .p-mypage .mypage_date .b-form .b-form__sub_input_box .b-form__sub_input_box__col_l {
    width: 6em;
    padding-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-mypage .mypage_date .b-form .b-form__sub_input_box .b-form__sub_input_box__col_r {
    margin-top: 0;
  }
}
.p-mypage .list {
  margin-top: 60px;
}
.p-mypage .list .b-cards01 {
  margin-top: 20px;
}
.p-mypage .list .b-btn01 {
  margin-top: 40px;
}
.p-mypage .footer {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .p-mypage .footer {
    margin-top: 50px;
  }
}

.p-company .list {
  margin: 80px auto 0;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .p-company .list {
    margin: 40px auto 0;
    padding: 0 15px;
  }
}
.p-company .list .b-cards01 {
  margin: 0 auto;
  max-width: var(--contents_width);
}
.p-company .list .b-cards01 .b-card__thmbnail a {
  padding-bottom: 0;
}
.p-company .b-pagenation {
  margin-top: 85px;
}
@media screen and (max-width: 768px) {
  .p-company .b-pagenation {
    margin-top: 45px;
  }
}
.p-company .footer {
  margin-top: 85px;
  /*@include mq() {
  	margin-top: 45px;
  }*/
}
.p-company .company_btn_box {
  background-color: #F6F6F6;
  padding: 30px 20px 40px;
}
.p-company .company_btn_box > p {
  font-size: 1.8rem;
  max-width: var(--contents_width);
  margin: 0 auto 10px;
}
.p-company .company_btn_box > p span {
  font-weight: bold;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-company .company_btn_box > p {
    font-size: 1.6rem;
  }
  .p-company .company_btn_box > p span {
    font-size: 1.8rem;
  }
}
.p-company .company_btn_box .company_btn_list {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  row-gap: 20px;
  max-width: var(--contents_width);
  margin-inline: auto;
  flex-wrap: wrap;
}
@media screen and (max-width: 1070px) {
  .p-company .company_btn_box .company_btn_list {
    column-gap: 10px;
    row-gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.p-company .company_btn_box .company_btn_list li {
  /*width: 240px;*/
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 1070px) {
  .p-company .company_btn_box .company_btn_list li {
    width: calc(50% - 5px);
    /*margin-bottom: 10px;*/
  }
}
.p-company .company_btn_box .company_btn_list li a {
  background-color: var(--navy);
  border: 1px solid var(--navy);
  color: #fff;
  text-align: center;
  padding: 20px;
  display: block;
  line-height: 1;
  transition: color 0.3s, background 0.3s;
}
.p-company .company_btn_box .company_btn_list li a span {
  padding-right: 20px;
  position: relative;
}
.p-company .company_btn_box .company_btn_list li a span::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  top: 51%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s;
}
@media screen and (max-width: 1070px) {
  .p-company .company_btn_box .company_btn_list li a {
    padding: 15px 5px;
    font-size: 1.4rem;
  }
  .p-company .company_btn_box .company_btn_list li a span {
    padding-right: 15px;
  }
}
@media (any-hover: hover) {
  .p-company .company_btn_box .company_btn_list li a:hover {
    background: none;
    color: var(--navy);
  }
  .p-company .company_btn_box .company_btn_list li a:hover span::after {
    border-color: var(--navy);
  }
}
.p-company .b-cards01 .b-cards01__card {
  /*align-items: center;*/
}
.p-company .b-cards01 .b-card__thmbnail figure {
  border: 1px solid #CCC;
}
.p-company .company_cards01__title span:not([class]) {
  padding-right: 20px;
  background: url("../images/ico_blank_gray.svg") no-repeat right center/15px 15px;
}
@media screen and (max-width: 768px) {
  .p-company .company_cards01__title {
    margin-top: 0;
  }
}
.p-company .js-hover_box .company_cards01__title span:not([class]) {
  background-size: 15px 15px;
}

.p-bridge section {
  max-width: var(--contents_width);
  margin: 0 auto;
}
.p-bridge section:not(:first-of-type) {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-bridge section:not(:first-of-type) {
    margin-top: 60px;
  }
}
.p-bridge .bridge_title {
  font-size: 2.4rem;
  max-width: var(--contents_width);
  margin: 0 auto 10px;
  color: var(--blue);
}
@media screen and (max-width: 768px) {
  .p-bridge .bridge_title {
    font-size: 1.8rem;
  }
}
.p-bridge .bridge_unit_2col01 {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
}
.p-bridge .bridge_unit_2col01 > .bridge_unit_2col01__unit {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 1070px) {
  .p-bridge .bridge_unit_2col01 {
    column-gap: 20px;
  }
  .p-bridge .bridge_unit_2col01 > .bridge_unit_2col01__unit {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .p-bridge .bridge_unit_2col01 {
    flex-direction: column;
    gap: 20px 0;
  }
  .p-bridge .bridge_unit_2col01 > .bridge_unit_2col01__unit {
    width: 100%;
  }
}
.p-bridge .bridge_unit_2col01.bridge_unit_2col01--center {
  align-items: center;
}
.p-bridge .bridge_unit_2col02 {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  /*column-gap: 40px;*/
  justify-content: space-between;
}
.p-bridge .bridge_unit_2col02 > .bridge_unit_2col02__unit:first-of-type {
  max-width: 560px;
  width: 52%;
}
.p-bridge .bridge_unit_2col02 > .bridge_unit_2col02__unit:last-of-type {
  max-width: 480px;
  width: 46%;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-bridge .bridge_unit_2col02 {
    flex-direction: column;
    gap: 40px 0;
    align-items: center;
  }
  .p-bridge .bridge_unit_2col02 > .bridge_unit_2col02__unit:first-of-type {
    max-width: none;
    width: 100%;
  }
  .p-bridge .bridge_unit_2col02 > .bridge_unit_2col02__unit:last-of-type {
    max-width: none;
    width: 80%;
    margin-top: 0;
  }
}
.p-bridge .bridge_unit_3col01 {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  column-gap: 35px;
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px dotted #ccc;
}
.p-bridge .bridge_unit_3col01.bridge_unit_3col01--center {
  justify-content: center;
}
.p-bridge .bridge_unit_3col01.bridge_unit_3col01--center > .bridge_unit_3col01__unit {
  width: fit-content;
}
.p-bridge .bridge_unit_3col01 > .bridge_unit_3col01__unit {
  width: calc((100% - 70px) / 3);
}
@media screen and (max-width: 1070px) {
  .p-bridge .bridge_unit_3col01 {
    column-gap: 20px;
  }
  .p-bridge .bridge_unit_3col01 > .bridge_unit_3col01__unit {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 768px) {
  .p-bridge .bridge_unit_3col01 {
    flex-direction: column;
    gap: 20px 0;
  }
  .p-bridge .bridge_unit_3col01 > .bridge_unit_3col01__unit {
    width: 100%;
  }
  .p-bridge .bridge_unit_3col01 > .bridge_unit_3col01__unit:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
.p-bridge .bridge_unit_3col01.bridge_unit_3col01--center {
  align-items: center;
}
.p-bridge .bridge__box01:not(:last-of-type) {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-bridge .bridge__box01:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
.p-bridge .bridge__box01 figure {
  margin-top: 40px;
}
.p-bridge .bridge__box01__bnr a .bridge__box01__bnr__inner {
  background: url("../../../mock/images/bridge/bridge_bg_img01.png") no-repeat right 15% center rgba(226, 236, 247, 0.7);
  background-size: contain;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 50% 100px 40px;
}
.p-bridge .bridge__box01__bnr a .bridge__box01__bnr__inner dt {
  font-weight: bold;
  color: var(--blue);
  font-size: 2.4rem;
  margin-bottom: 10px;
  padding-right: 30px;
}
.p-bridge .bridge__box01__bnr a .bridge__box01__bnr__inner dt span {
  position: relative;
  padding-right: 30px;
  background: linear-gradient(transparent 95%, currentColor 95%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s;
}
.p-bridge .bridge__box01__bnr a .bridge__box01__bnr__inner dt span::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  right: 7px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transform: rotate(-45deg);
  transition: transform 0.2s;
}
.p-bridge .bridge__box01__bnr a .bridge__box01__bnr__inner dt span::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  /*transform: translateY(-50%) rotate(45deg);*/
  transition: transform 0.2s;
  background-color: var(--blue);
}
.p-bridge .bridge__box01__bnr a .bridge__box01__bnr__inner dd {
  font-weight: 400;
}
@media screen and (max-width: 1070px) {
  .p-bridge .bridge__box01__bnr a .bridge__box01__bnr__inner {
    padding: 60px 40% 60px 15px;
  }
  .p-bridge .bridge__box01__bnr a .bridge__box01__bnr__inner dt {
    font-size: 1.8rem;
    margin-bottom: 0;
    padding-right: 0;
  }
}
@media (any-hover: hover) {
  .p-bridge .bridge__box01__bnr a:hover .bridge__box01__bnr__inner dt span {
    background-size: 100% 100%;
  }
}
.p-bridge .bridge_ol_style01 li {
  list-style-type: none;
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.p-bridge .bridge_ol_style01 li:not(:last-of-type) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dotted #ccc;
}
.p-bridge .bridge_ol_style01 li figure {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-bridge .bridge_ol_style01 li {
    align-items: flex-start;
    column-gap: 10px;
  }
  .p-bridge .bridge_ol_style01 li figure {
    width: 60px;
  }
}
.p-bridge .bridge_ol_style01 dl dt {
  color: var(--blue);
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-bridge .bridge_ol_style01 dl dt {
    font-size: 1.7rem;
  }
}
.p-bridge .bridge_dl_style01 {
  background: #F7F7F7;
  padding: 45px 60px;
  border-radius: 10px;
}
.p-bridge .bridge_dl_style01 dt {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--blue);
  margin-bottom: 15px;
}
.p-bridge .bridge_dl_style01 dd {
  margin-top: 5px;
}
.p-bridge .bridge_dl_style01 dd img {
  vertical-align: middle;
  margin-right: 5px;
}
@media screen and (max-width: 1070px) {
  .p-bridge .bridge_dl_style01 {
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-bridge .bridge_dl_style01 {
    padding: 15px;
  }
}
.p-bridge .bridge_dl_style02 dt {
  font-size: 2rem;
  font-weight: bold;
  color: var(--blue);
  margin-bottom: 15px;
}
.p-bridge .bridge_dl_style02 dt a {
  vertical-align: middle;
  display: flex;
  align-items: center;
}
.p-bridge .bridge_dl_style02 dt a img {
  margin-right: 10px;
}
.p-bridge .bridge_dl_style02 dt span {
  position: relative;
  padding-right: 30px;
}
.p-bridge .bridge_dl_style02 dt span::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  right: 7px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transform: rotate(-45deg);
  transition: transform 0.2s;
}
.p-bridge .bridge_dl_style02 dt span::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  /*transform: translateY(-50%) rotate(45deg);*/
  transition: transform 0.2s;
  background-color: var(--blue);
}
.p-bridge .tab_btn_box {
  display: flex;
}
.p-bridge .tab_btn_box .tab_btn {
  width: 50%;
  text-align: center;
  background-color: rgb(243.4, 247.4, 251.8);
  padding: 25px 20px;
  font-size: 2rem;
  font-weight: bold;
  color: var(--blue);
  line-height: 1;
  cursor: pointer;
}
.p-bridge .tab_btn_box .tab_btn span {
  padding-bottom: 5px;
}
.p-bridge .tab_btn_box .tab_btn.is_active {
  background-color: var(--blue);
  color: #fff;
}
.p-bridge .tab_btn_box .tab_btn.is_active span {
  border-bottom: 2px solid #fff;
}
@media screen and (max-width: 768px) {
  .p-bridge .tab_btn_box .tab_btn {
    font-size: 1.5rem;
    padding: 20px 10px;
  }
}
.p-bridge .tab_content {
  display: none;
  background-color: var(--blue);
  padding: 10px;
}
.p-bridge .tab_content.is_show {
  display: block;
}
.p-bridge .tab_content .h2_tab_title01 {
  text-align: center;
  color: #fff;
  font-size: 3.4rem;
  line-height: 1.5;
  margin: 20px 0;
  /*padding: 0 10px;*/
}
.p-bridge .tab_content .h2_tab_title01 span {
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.5;
  display: inline-block;
}
.p-bridge .tab_content .h2_tab_title01 span.yellow {
  color: var(--logo_yellow);
}
@media screen and (max-width: 768px) {
  .p-bridge .tab_content .h2_tab_title01 {
    font-size: 2.2rem;
  }
  .p-bridge .tab_content .h2_tab_title01 span {
    font-size: 1.5rem;
  }
}
.p-bridge .tab_content .h3_tab_title01 {
  text-align: center;
  font-size: 3rem;
  color: #fff;
  background: var(--logo_yellow);
  padding: 20px;
  margin-top: 40px;
  line-height: 1.5;
}
.p-bridge .tab_content .h3_tab_title01.light_blue {
  background: #7CCEF4;
}
.p-bridge .tab_content .h3_tab_title01 .icon {
  display: inline-block;
  border: 2px solid #fff;
  padding: 10px 35px;
  border-radius: 30px;
  font-size: 2rem;
  line-height: 1;
}
.p-bridge .tab_content .h3_tab_title01 .underline {
  border-bottom: 2px solid #fff;
}
@media screen and (max-width: 1070px) {
  .p-bridge .tab_content .h3_tab_title01 {
    font-size: 2rem;
  }
  .p-bridge .tab_content .h3_tab_title01 .icon {
    font-size: 1.6rem;
    border-width: 1px;
    padding: 5px 25px;
  }
}
.p-bridge .tab_content .tab_content_box01 {
  background-color: #fff;
  padding: 45px 40px;
}
@media screen and (max-width: 1070px) {
  .p-bridge .tab_content .tab_content_box01 {
    padding: 40px 20px;
  }
}
.p-bridge .tab_content .tab_content_box02 {
  margin-top: 40px;
  background-color: #fff;
  padding: 45px 40px;
}
@media screen and (max-width: 1070px) {
  .p-bridge .tab_content .tab_content_box02 {
    padding: 40px 20px;
  }
}
.p-bridge .tab_content .tab_content_box02.yellow {
  border: 1px solid var(--logo_yellow);
}
.p-bridge .tab_content .tab_content_box02.light_blue {
  border: 1px solid #7CCEF4;
}
.p-bridge .tab_copy01 {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  line-height: 2;
  margin-top: 40px;
}
.p-bridge .tab_copy01 span {
  border-bottom: 2px solid;
  font-size: 2.4rem;
  padding-bottom: 3px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-bridge .tab_copy01 {
    font-size: 1.6rem;
  }
  .p-bridge .tab_copy01 span {
    font-size: 1.8rem;
  }
}
.p-bridge .bridge__faq01 {
  background: rgb(229.5, 238, 247.5);
  /*padding: 20px 30px;*/
  /*@include mq() {
  	padding: 15px;
  }*/
}
.p-bridge .bridge__faq01:not(:last-of-type) {
  margin-bottom: 20px;
}
.p-bridge .bridge__faq01 dt {
  font-weight: bold;
  font-size: 1.8rem;
  padding: 20px 30px;
  padding-right: 55px;
  position: relative;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-bridge .bridge__faq01 dt:hover {
    opacity: 0.7;
  }
}
.p-bridge .bridge__faq01 dt::before, .p-bridge .bridge__faq01 dt::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--blue);
  transition: all 0.5s;
  border-radius: 0;
  transform: scale(1);
}
.p-bridge .bridge__faq01 dt::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.p-bridge .bridge__faq01 dt.is_open::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.p-bridge .bridge__faq01 dt span {
  padding-left: 46px;
  background: url("../../../mock/images/bridge/bridge_ico_question01.png") no-repeat left top/36px 36px;
  /*padding-bottom: 15px;*/
  display: inline-block;
  min-height: 36px;
}
@media screen and (max-width: 768px) {
  .p-bridge .bridge__faq01 dt {
    font-size: 1.6rem;
    padding: 15px;
    padding-right: 40px;
  }
  .p-bridge .bridge__faq01 dt::before, .p-bridge .bridge__faq01 dt::after {
    right: 15px;
    width: 15px;
  }
}
.p-bridge .bridge__faq01 dd {
  display: none;
  padding: 0 30px 20px 76px;
  position: relative;
}
.p-bridge .bridge__faq01 dd::before {
  content: "A";
  display: block;
  position: absolute;
  top: 0;
  /*left: 1em;*/
  left: 46px;
}
@media screen and (max-width: 768px) {
  .p-bridge .bridge__faq01 dd {
    padding: 0 15px 15px 60px;
  }
  .p-bridge .bridge__faq01 dd::before {
    left: 30px;
  }
}
.p-bridge .footer {
  margin-top: 85px;
  /*@include mq() {
  	margin-top: 45px;
  }*/
}
/*# sourceMappingURL=style.css.map */
