@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

div {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  color: #000;
  background-color: #fff;
  font-weight: 500;
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
body.active {
  height: 100%;
  overflow: hidden;
}

a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.5;
}

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

.sp-view {
  display: none !important;
}

@media (max-width: 768px) {
  .pc-view {
    display: none !important;
  }
  .sp-view {
    display: block !important;
  }
}

.clearfix:after {
  content: ".";
  /* 新しい要素を作る */
  display: block;
  /* ブロックレベル要素に */
  clear: both;
  height: 0;
  font-size: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*¥*/
  /*/
  height: auto;
  overflow: hidden;
  /**/
}

sup {
  font-size: 50%;
  vertical-align: top;
  position: relative;
  top: 0.3em;
}

.max1120 {
  max-width: 1120px;
  margin: 0 auto;
}

.max1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 7rem;
  letter-spacing: 0.2rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .breadcrumb {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    letter-spacing: 0.1rem;
  }
}
.breadcrumb li {
  color: #fff;
}
.breadcrumb li::after {
  content: ">";
  margin: 0 0.5rem;
}
.breadcrumb li:last-of-type::after {
  content: "";
}
.breadcrumb li a {
  color: #fff;
}

section.sub-container .bg {
  background-color: #dfecf7;
  padding: 10rem 1.5rem 14rem;
}
@media (max-width: 768px) {
  section.sub-container .bg {
    padding: 5rem 1.5rem 7rem;
  }
}

.btn-wrapper {
  text-align: center;
  margin-bottom: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 768px) {
  .btn-wrapper {
    margin-bottom: 8rem;
  }
}
.btn-wrapper a.blue-btn.auto {
  display: block;
  max-width: 370px;
  padding: 2rem 4rem;
  width: 100%;
}
@media (max-width: 768px) {
  .btn-wrapper a.blue-btn.auto {
    padding: 1.5rem;
  }
}
.btn-wrapper a.blue-btn.auto:nth-of-type(2) {
  margin-top: 2rem;
}

/* ===== Blue Button CSS Variables ===== */
:root {
  --blue-btn-bg: #0050aa;
  --blue-btn-color: #fff;
  --blue-btn-border: #0050aa;
  --blue-btn-icon: url("../images/btn_arrow.png");
  --blue-btn-hover-bg: #fff;
  --blue-btn-hover-color: #0050aa;
  --blue-btn-hover-icon: url("../images/btn_arrow_hover.png");
}
/* ==================================== */

a.blue-btn {
  /* 共通設定をCSS変数化 */
  background-color: var(--blue-btn-bg);
  color: var(--blue-btn-color);
  border: 1px solid var(--blue-btn-border);
  background-image: var(--blue-btn-icon);
  max-width: 320px;
  display: block;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  line-height: 15px;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-weight: 700;
  background-repeat: no-repeat;
  background-position: right 20px top 50%;
}
@media (max-width: 768px) {
  a.blue-btn {
    font-size: 1.4rem;
    padding: 1.5rem;
    max-width: 305px;
    line-height: 1.5;
  }
}
a.blue-btn:hover {
  background-color: var(--blue-btn-hover-bg);
  color: var(--blue-btn-hover-color);
  background-image: var(--blue-btn-hover-icon);
  opacity: 1;
}
a.blue-btn.back {
  background-image: url("../images/btn_arrow_left.png");
  background-repeat: no-repeat;
  background-position: left 20px top 50%;
}
a.blue-btn.back:hover {
  background-image: url("../images/btn_arrow_left_hover.png");
}
a.blue-btn.back.white {
  background-color: #fff;
  color: #0050aa;
  border: none;
  background-image: url("../images/btn_arrow_left_hover.png");
  border: 1px solid #0050aa;
}
a.blue-btn.back.white:hover {
  background-image: url("../images/btn_arrow_left.png");
  background-color: #0050aa;
  color: #fff;
}
a.blue-btn.light-blue {
  background-color: #5c93d1;
  border: 1px solid #5c93d1;
}
a.blue-btn.light-blue:hover {
  color: #5c93d1;
  background-color: #fff;
  background-image: url("../images/btn_arrow-light-blue.png");
}
a.blue-btn.link {
  position: relative;
  background-image: none;
}
a.blue-btn.link::before {
  font-family: "Line Awesome Free";
  font-weight: 900;
  content: "\f35d";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  right: 20px;
  font-size: 2.2rem;
}
a.blue-btn.link:hover {
  background-image: none;
}
a.blue-btn.auto {
  max-width: none;
  padding: 2rem 8rem;
  width: auto;
  display: inline-block;
}
@media (max-width: 768px) {
  a.blue-btn.auto {
    padding: 1.5rem;
    display: block;
    max-width: 305px;
  }
}
a.blue-btn.clear {
  background-color: transparent;
  color: #0050aa;
  background-image: none;
}
a.blue-btn.clear img {
  margin-right: 1rem;
  width: 20px;
}
a.blue-btn.clear:hover {
  opacity: 0.5;
}
a.blue-btn.pdf {
  background-image: url("../images/pdf_icon.png");
  background-repeat: no-repeat;
  background-position: left 55px top 50%;
  background-size: 20px;
}
@media (max-width: 768px) {
  a.blue-btn.pdf {
    background-position: left 25px top 50%;
  }
}

.bg-color {
  background-color: #dfecf7;
  height: 24rem;
}
@media (max-width: 834px) {
  .bg-color {
    height: 18rem;
  }
}
@media (max-width: 768px) {
  .bg-color {
    height: 17rem;
  }
}

.bg-blue {
  background-image: url("../images/bg_light-blue01.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: #b4d2ec;
  width: 100%;
}
@media (max-width: 768px) {
  .bg-blue {
    background-image: url("../images/bg_light-blue01_sp.png");
  }
}
.bg-blue.light-blue {
  background-image: url("../images/bg_blue.png");
  background-color: #f2f7fb;
}
@media (max-width: 768px) {
  .bg-blue.light-blue {
    background-image: url("../images/bg_blue_sp.png");
  }
}
.bg-blue.multi {
  background-image: url("../images/bg_multi.jpg");
  background-position: center center;
  background-size: cover;
}
@media (max-width: 768px) {
  .bg-blue.multi {
    background-image: url("../images/bg_multi_sp.jpg");
  }
}
.bg-blue.multi .bg-multi {
  background-image: url("../images/bg_light-blue02.png");
  background-repeat: no-repeat;
  background-size: 100%;
}
@media (max-width: 768px) {
  .bg-blue.multi .bg-multi {
    background-image: url("../images/bg_light-blue02_sp.png");
  }
}
.bg-blue.white {
  background-image: url("../images/bg_white.png");
  background-color: #b4d2ec;
}
@media (max-width: 768px) {
  .bg-blue.white {
    background-image: url("../images/bg_white_sp.png");
  }
}

p.gray-cmt {
  font-size: 1.2rem;
  color: #777777;
  text-align: right;
  font-weight: 400;
}
@media (max-width: 768px) {
  p.gray-cmt {
    font-size: 1rem;
  }
}

#page-top {
  width: 64px;
  height: 64px;
  position: fixed;
  right: 40px;
  bottom: 80px;
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  background: #fff;
  border-radius: 100px;
  -webkit-box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
@media (max-width: 768px) {
  #page-top {
    width: 50px;
    height: 50px;
    right: 15px;
    bottom: 80px;
  }
}
#page-top a {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  text-decoration: none;
}
@media (max-width: 768px) {
  #page-top a {
    width: 50px;
    height: 50px;
  }
}
#page-top a::before {
  font-family: "Line Awesome Free";
  font-weight: 900;
  content: "\f106";
  font-size: 25px;
  color: #0050aa;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  /* Safari用 */
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 1.8rem;
}
#page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
  animation: UpAnime 0.5s forwards;
}
#page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
  animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(150px);
    transform: translateY(150px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(150px);
    transform: translateY(150px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(150px);
    transform: translateY(150px);
  }
}

@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(150px);
    transform: translateY(150px);
  }
}

.pd-wrapper {
  padding-top: 7rem;
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .pd-wrapper {
    padding: 6rem 0 0;
  }
}
.pd-wrapper h3 {
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
  font-size: 4rem;
  color: #0050aa;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 5rem;
  letter-spacing: 0.3rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .pd-wrapper h3 {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    margin-bottom: 3rem;
  }
}
.pd-wrapper h3 span {
  font-size: 4rem;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-style: normal;
}
@media (max-width: 834px) {
  .pd-wrapper h3 span {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .pd-wrapper h3 span {
    font-size: 2rem;
  }
}
.pd-wrapper .contents-block {
  max-width: 1000px;
  background-color: #fff;
  padding: 7rem 6rem 8rem;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
@media (max-width: 834px) {
  .pd-wrapper .contents-block {
    padding: 6rem 4rem;
  }
}
@media (max-width: 768px) {
  .pd-wrapper .contents-block {
    padding: 4rem 2rem;
  }
}
.pd-wrapper .contents-block .subttl-wrapper {
  position: absolute;
  width: 100%;
  top: -35px;
  left: 0;
}
@media (max-width: 768px) {
  .pd-wrapper .contents-block .subttl-wrapper {
    top: -23px;
  }
}
.pd-wrapper .contents-block .subttl-wrapper .subttl {
  position: static !important;
  top: auto;
  left: auto;
  -webkit-transform: none;
  transform: none;
}
.pd-wrapper .contents-block p.subttl {
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
  background-color: #0050aa;
  padding: 0.7rem 2rem;
  margin: 0 auto;
  display: inline-block;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media (max-width: 768px) {
  .pd-wrapper .contents-block p.subttl {
    font-size: 1.7rem;
    top: -23px;
  }
}
.pd-wrapper .contents-block .textarea p {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  font-weight: 500;
  line-height: 2.5;
}
@media (max-width: 768px) {
  .pd-wrapper .contents-block .textarea p {
    line-height: 2;
  }
}
.pd-wrapper .contents-block .textarea p .right {
  display: block;
  text-align: right;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .pd-wrapper .contents-block .textarea p .right {
    margin-top: 2rem;
  }
}
.pd-wrapper .contents-block .textarea a.link {
  color: #0050aa;
  text-decoration: underline;
}
.pd-wrapper .contents-block .textarea a.tel {
  text-decoration: underline;
}
.pd-wrapper .contents-block .textarea a.blue-btn {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .pd-wrapper .contents-block .textarea a.blue-btn {
    margin-top: 3rem;
  }
}
.pd-wrapper .contents-block .textarea p.blue-ttl {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  text-align: center;
  color: #0050aa;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .pd-wrapper .contents-block .textarea p.blue-ttl {
    font-size: 1.6rem;
    line-height: 1.7;
    letter-spacing: 0.1rem;
  }
}
.pd-wrapper .contents-block .textarea p.blue-ttl.left {
  font-size: 2.4rem;
  line-height: 32px;
  text-align: left;
}
@media (max-width: 768px) {
  .pd-wrapper .contents-block .textarea p.blue-ttl.left {
    font-size: 1.7rem;
    line-height: 24px;
  }
}
.pd-wrapper .contents-block .textarea p.blue-ttl.left img {
  margin-right: 1rem;
  width: 32px;
}
@media (max-width: 768px) {
  .pd-wrapper .contents-block .textarea p.blue-ttl.left img {
    width: 24px;
  }
}
.pd-wrapper .contents-block .textarea .sub-contents {
  margin-top: 3rem;
}
.pd-wrapper .contents-block .textarea .sub-contents .blue-bg {
  background-color: #f2f7fb;
  padding: 4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 20px;
  text-align: left;
}
@media (max-width: 768px) {
  .pd-wrapper .contents-block .textarea .sub-contents .blue-bg {
    padding: 2rem;
  }
}
.pd-wrapper .contents-block .textarea .sub-contents .blue-bg ul {
  list-style: disc;
  list-style-position: inside;
  color: #0050aa;
}
.pd-wrapper .contents-block .textarea .sub-contents .blue-bg ul li {
  text-indent: -2.5rem;
  padding-left: 2.5rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .pd-wrapper .contents-block .textarea .sub-contents .blue-bg ul li {
    text-indent: -2rem;
    padding-left: 2rem;
  }
}
.pd-wrapper .contents-block .textarea .sub-contents .blue-bg ul li span {
  color: #000;
}
.pd-wrapper
  .contents-block
  .textarea
  .sub-contents
  .blue-bg
  ul
  li:last-of-type {
  margin-bottom: 0;
}
.pd-wrapper .gray-cmt {
  max-width: 1000px;
  margin: 3rem auto 0;
}
@media (max-width: 768px) {
  .pd-wrapper .gray-cmt {
    font-size: 1rem;
    text-align: left;
    margin: 2rem auto 0;
  }
}

.notFound-container {
  margin: 0 auto;
  text-align: center;
  padding-top: 8rem;
}
@media (max-width: 768px) {
  .notFound-container {
    padding-top: 5rem;
  }
}
.notFound-container .max1000 {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .notFound-container .max1000 {
    margin-bottom: 5rem;
  }
}
.notFound-container p.title {
  font-size: 4.8rem;
  line-height: 1;
  margin-bottom: 4rem;
  text-transform: uppercase;
  color: #0050aa;
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
}
@media (max-width: 768px) {
  .notFound-container p.title {
    font-size: 3.2rem;
    margin-bottom: 3rem;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto 12rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .pagination {
    margin-bottom: 6rem;
  }
}
.pagination .pagination-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 40px;
  height: 40px;
  background: #f2f7fb;
  font-size: 1.6rem;
  font-weight: 500;
  color: #0050aa;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
@media (max-width: 768px) {
  .pagination .pagination-item-link {
    width: 32px;
    height: 32px;
    font-size: 1.4rem;
  }
}
.pagination .pagination-item-link.isActive {
  background: #b4d2ec;
  pointer-events: none;
}
.pagination .pagination-item-link:not(.isActive):hover {
  background: #b4d2ec;
  opacity: 1;
}
.pagination > * + * {
  margin-left: 1rem;
}
.pagination li {
  color: #0050aa;
}
.pagination li:nth-of-type(2) {
  margin-left: 2rem;
}
@media (max-width: 768px) {
  .pagination li:nth-of-type(2) {
    margin-left: 1.5rem;
  }
}
.pagination li:last-of-type {
  margin-left: 2rem;
}
@media (max-width: 768px) {
  .pagination li:last-of-type {
    margin-left: 1.5rem;
  }
}
.pagination li img {
  width: 100%;
}
@media (max-width: 768px) {
  .pagination li img {
    width: 30px;
  }
}

.scroll-hint-icon {
  height: 90px !important;
}

.header_common {
  background-color: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 3rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  position: fixed;
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 110px;
  z-index: 200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 834px) {
  .header_common {
    padding: 2rem;
  }
}
.header_common h1 {
  max-width: 262px;
  width: 18.985%;
}
@media (max-width: 834px) {
  .header_common h1 {
    max-width: 180px;
  }
}
.header_common .header_menu {
  position: relative;
  width: 100%;
  text-align: center;
  list-style: none;
  padding: 0;
}
.header_common .header_menu .position-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 50px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 3rem;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
  row-gap: 1.5rem;
}
.header_common .header_menu .position-wrapper .top-second-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3rem;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
}
.header_common .header_menu .header_menu-item {
  white-space: nowrap;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header_common .header_menu .header_menu-item:last-of-type {
  padding-right: 0;
}
.header_common .header_menu .header_menu-item a {
  color: #000;
  text-decoration: none;
  line-height: 1;
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 3px solid transparent;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 1400px) and (min-width: 835px) {
  .header_common .header_menu .header_menu-item a {
    font-size: 1.04167vw;
  }
}
@media (max-width: 834px) {
  .header_common .header_menu .header_menu-item a {
    font-size: 1rem;
  }
}
.header_common .header_menu .header_menu-item a:hover {
  color: #0050aa;
  opacity: 1;
}
.header_common .header_menu .header_menu-item a.contact {
  background-color: #dfecf7;
  color: #0050aa;
  padding: 1rem 3rem;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-image: url("../images/btn_arrow_hover.png");
  background-position: right 15px top 52%;
  background-repeat: no-repeat;
  background-size: 6px;
  line-height: 15px;
}
@media (max-width: 834px) {
  .header_common .header_menu .header_menu-item a.contact {
    padding: 1.5rem;
  }
}
.header_common .header_menu .header_menu-item a.contact:hover {
  background-color: #0050aa;
  color: #fff;
  background-image: url("../images/btn_arrow.png");
}
.header_common .header_menu .header_menu-item a.login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  border-bottom: 0;
  padding-bottom: 0;
}
.header_common .header_menu .header_menu-item a.login img {
  width: 20px;
}
.header_common .header_menu .header_menu-item a.no-pointer {
  cursor: default;
}
.header_common .header_menu .mega_menu:hover .mega_menu-second {
  top: 90px !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 20 !important;
}
.header_common .header_menu .mega_menu:hover a.hover {
  border-bottom: 3px solid #0050aa;
  display: inline-block;
}
.header_common .header_menu .mega_menu:hover + .bg-black {
  top: 110px !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 10 !important;
}
.header_common .header_menu .mega_menu-second {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  background-color: #b4d2ec;
  border-radius: 20px;
  padding: 4rem 6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 30;
}
.header_common .header_menu .mega_menu-second ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header_common .header_menu .mega_menu-second ul li {
  padding-right: 3rem;
}
.header_common .header_menu .mega_menu-second ul li:last-of-type {
  padding-right: 0;
}
.header_common .header_menu .mega_menu-second ul.upper-block {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #dfecf7;
  padding-bottom: 2rem;
  margin-bottom: 4rem;
  width: auto;
}
.header_common .header_menu .mega_menu-second ul.upper-block li {
  width: calc(100% / 4);
  margin-bottom: 1rem;
  padding-right: 0;
}
.header_common .header_menu .mega_menu-second ul.upper-block li a {
  background-position: right 30px center;
}
.header_common .header_menu .mega_menu-second ul.upper-block.torikumi {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header_common .header_menu .mega_menu-second ul.upper-block.torikumi li {
  width: 48%;
}
.header_common .header_menu .mega_menu-second ul.upper-block.torikumi li a {
  width: 100%;
  padding-right: 0;
  background-position: right center;
}
.header_common .header_menu .mega_menu-second a {
  color: #0050aa;
  background-image: url("../images/header_arrow.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  padding-right: 3rem;
  background-size: 24px;
  line-height: 24px;
  display: block;
}
.header_common .header_menu .mega_menu-second a:hover {
  opacity: 0.8;
}
.header_common .bg-black {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  padding-right: 0 !important;
  display: block !important;
}

#header_top {
  background-color: #dfecf7;
}
#header_top a.contact {
  background-color: #0050aa;
  color: #fff;
  padding: 1rem 3rem;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-image: url("../images/btn_arrow.png");
  background-position: right 15px top 52%;
  background-repeat: no-repeat;
  background-size: 6px;
  line-height: 15px;
  border: 1px solid #0050aa;
}
@media (max-width: 834px) {
  #header_top a.contact {
    padding: 1.5rem;
  }
}
#header_top a.contact:hover {
  background-color: #fff;
  color: #0050aa;
  background-image: url("../images/btn_arrow_hover.png");
}

.sub_header {
  background-image: url("../images/subheader_img.png");
  background-size: cover;
  background-position: center center;
  margin-top: 11rem;
}
@media (max-width: 768px) {
  .sub_header {
    margin-top: 6rem;
  }
}
.sub_header .bg {
  background-image: url("../images/bg_blue02.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
  padding: 5rem 1.5rem 13rem;
  position: relative;
}
@media (max-width: 768px) {
  .sub_header .bg {
    background-image: url("../images/bg_blue02_sp.png");
    padding: 2rem 1.5rem 10rem;
  }
}
.sub_header .bg.blue {
  background-image: url("../images/bg_blue01.png");
}
@media (max-width: 768px) {
  .sub_header .bg.blue {
    background-image: url("../images/bg_blue01_sp.png");
  }
}
.sub_header h2 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5rem;
  line-height: 1;
  text-align: center;
}
@media (max-width: 768px) {
  .sub_header h2 {
    font-size: 2.2rem;
    letter-spacing: 0.2rem;
    line-height: 1.7;
  }
}
.sub_header .copy-8stars {
  background-color: #fff;
  position: absolute;
  right: 0;
  bottom: 60px;
  padding: 0 1rem;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .sub_header .copy-8stars {
    bottom: auto;
    top: 20px;
    font-size: 1.2rem;
  }
}

.noHeader-container {
  background-color: #dfecf7;
  margin: 0 auto;
  padding: 4rem 1.5rem 14rem;
  margin-top: 11rem;
}
@media (max-width: 768px) {
  .noHeader-container {
    margin-top: 6rem;
    padding: 2rem 1.5rem 7rem;
  }
}
.noHeader-container .breadcrumb {
  margin: 0 auto 10rem;
  max-width: 1120px;
}
@media (max-width: 768px) {
  .noHeader-container .breadcrumb {
    margin: 0 auto 4rem;
  }
}
.noHeader-container .breadcrumb li {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.4rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .noHeader-container .breadcrumb li {
    font-size: 1.2rem;
  }
}
.noHeader-container .breadcrumb li a {
  color: rgba(0, 0, 0, 0.5);
}

.header_sp {
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  background-color: #fff;
  width: 100%;
  z-index: 150;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.header_sp .inner-wrapper {
  position: relative;
}
.header_sp .logo-block {
  padding: 0 1.5rem;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header_sp .logo-block h1 {
  width: 199px;
}
.header_sp .logo-block h1 img {
  width: 100%;
}

/*ハンバーガーボタン*/
.el_humburger {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  right: 15px;
  width: 30px;
  height: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 20;
  cursor: pointer;
  pointer-events: auto;
  text-align: center;
}
.el_humburger .el_humburger_wrapper {
  width: 30px;
}
.el_humburger span {
  display: block;
  width: 100%;
  margin: 0 auto 0.7rem;
  height: 2px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-color: #0050aa;
}
.el_humburger span:last-of-type {
  margin-bottom: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.top {
  -webkit-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.middle {
  opacity: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}

.navi {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  background-color: #fff;
  width: 100vw;
  z-index: 110;
  padding: 9rem 2rem 4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 600ms ease-out;
  transition: all 600ms ease-out;
  -webkit-transform: translateZ(0) translateX(100%);
  transform: translateZ(0) translateX(100%);
  overflow: auto;
}
.navi .login-btn {
  margin-bottom: 2rem;
}
.navi .login-btn a {
  display: block;
  border: 1px solid #0050aa;
  color: #0050aa;
  font-weight: bold;
  font-size: 1.4rem;
  border-radius: 50px;
  width: 100%;
  padding: 1rem 3rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-image: url("../images/btn_arrow_hover.png");
  background-repeat: no-repeat;
  background-position: right 20px top 50%;
}
.navi .navi_inner {
  background-color: #b4d2ec;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  margin: 5rem auto;
}
.navi .navi_inner .navi_item {
  position: relative;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: bold;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 1.5rem;
}
.navi .navi_inner .navi_item p,
.navi .navi_inner .navi_item a {
  display: block;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #0050aa;
  line-height: 24px;
}
.navi .navi_inner .navi_item a {
  background-image: url(../images/arrow_right-icon.png);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: right 0 top 50%;
}
.navi a.contact-btn {
  background-color: #dfecf7;
  color: #0050aa;
  padding: 1rem 3rem;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-image: url("../images/btn_arrow_hover.png");
  background-position: right 15px top 52%;
  background-repeat: no-repeat;
  background-size: 6px;
  width: 100%;
  display: block;
  font-weight: bold;
  margin-bottom: 3rem;
}
.navi a.contact-btn:hover {
  background-color: #0050aa;
  color: #fff;
  background-image: url("../images/btn_arrow.png");
}
.navi a.policy {
  display: block;
}

.js_humburgerOpen .navi {
  -webkit-transform: translateZ(0) translateX(0);
  transform: translateZ(0) translateX(0);
}

.el_spChildNavOpen {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 20;
}

.el_spChildNavOpen_wrapper01,
.el_spChildNavOpen_wrapper02 {
  position: relative;
}
.el_spChildNavOpen_wrapper01::before,
.el_spChildNavOpen_wrapper02::before {
  content: "";
  background-image: url(../images/icon_plus_blue.png);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: right 0 top 50%;
  width: 24px;
  height: 24px;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.el_spChildNavOpen_wrapper01.on:before,
.el_spChildNavOpen_wrapper02.on:before {
  content: "";
  background-image: url(../images/icon_minus_blue.png);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: right 0 top 50%;
  width: 24px;
  height: 24px;
  display: inline-block;
}

.nav_child {
  padding-top: 2.5rem;
  margin-bottom: 1.5rem;
}
.nav_child a {
  background-image: none;
}

.nav_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.nav_flex .nav_child_item {
  width: 45%;
}

.nav_child_item {
  position: relative;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.nav_child_item:last-of-type {
  margin-bottom: 0;
}
.nav_child_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  padding-left: 0;
  padding-right: 0;
}
.nav_child_item a.border {
  padding-bottom: 1.5rem;
}
.nav_child_item a span.triangle {
  width: 0;
  height: 0;
  border-left: 5px solid #b4d2ec;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  display: block;
  padding-right: 0.5rem;
}

.js_openTarget {
  display: none;
}

section.mv-container {
  position: relative;
  z-index: 10;
}
section.mv-container .position {
  position: absolute;
  top: -80px;
  left: 0;
  z-index: 210;
  text-align: center;
  width: 100%;
}
@media (max-width: 834px) {
  section.mv-container .position {
    top: -50px;
  }
}
@media (max-width: 768px) {
  section.mv-container .position {
    top: -70px;
  }
}
section.mv-container .position img {
  max-width: 740px;
  margin: 0 auto 5rem;
}
@media (max-width: 768px) {
  section.mv-container .position img {
    width: 74.133%;
    max-width: 278px;
    margin-bottom: 3rem;
  }
}
section.mv-container .position p {
  color: #0050aa;
  font-weight: bold;
  line-height: 2;
  padding: 0 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  section.mv-container .position p {
    line-height: 1.8;
    text-align: left;
  }
}
section.mv-container .slide-items {
  padding-top: 22rem;
  margin-bottom: 9rem;
}
@media (max-width: 768px) {
  section.mv-container .slide-items {
    padding-top: 17rem;
    margin-bottom: 12rem;
  }
}
section.mv-container .slide-items .slick-slide {
  margin: 0 4rem;
}
@media (max-width: 834px) {
  section.mv-container .slide-items .slick-slide {
    margin: 0 2rem;
  }
}
@media (max-width: 768px) {
  section.mv-container .slide-items .slick-slide {
    margin: 0 1rem;
  }
}
section.mv-container .slide-items li .trimming {
  overflow: hidden;
  position: relative;
  padding-top: 72.5%;
}
section.mv-container .slide-items li .trimming::before {
  content: "";
  display: block;
}
section.mv-container .slide-items li .trimming img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}
section.mv-container .catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  max-width: 1160px;
  padding: 0 1.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
@media (max-width: 834px) {
  section.mv-container .catch {
    bottom: 2rem;
  }
}
@media (max-width: 768px) {
  section.mv-container .catch {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    bottom: -7rem;
  }
}
section.mv-container .catch p {
  background-color: #fff;
  font-size: 3.6rem;
  line-height: 1;
  font-weight: bold;
  padding: 1.5rem 2.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  letter-spacing: 0.3rem;
}
@media (max-width: 834px) {
  section.mv-container .catch p {
    font-size: 2.4rem;
    letter-spacing: 0.1rem;
  }
}
@media (max-width: 768px) {
  section.mv-container .catch p {
    font-size: 1.7rem;
    text-align: center;
    letter-spacing: 0.1rem;
    padding: 1rem;
  }
}
section.mv-container .catch p:first-of-type {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  section.mv-container .catch p:first-of-type {
    margin-bottom: 1rem;
  }
}

.search-wrapper {
  background-color: #fff;
  border-radius: 20px;
  padding: 6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 1000px;
  margin: 0 auto 10rem;
}
@media (max-width: 768px) {
  .search-wrapper {
    padding: 4rem 2rem 3rem;
    margin-bottom: 4rem;
  }
}
.search-wrapper p.title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem !important;
  color: #0050aa;
  text-align: left !important;
}
@media (max-width: 768px) {
  .search-wrapper p.title {
    font-size: 1.4rem;
  }
}
.search-wrapper form .search-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .search-wrapper form .search-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 3rem;
  }
}
.search-wrapper form .search-box .item {
  width: 48%;
}
@media (max-width: 768px) {
  .search-wrapper form .search-box .item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .search-wrapper form .search-box .item:first-of-type {
    margin-bottom: 2rem;
  }
}
.search-wrapper form .search-box .item .key-box {
  position: relative;
}
@media (max-width: 768px) {
  .search-wrapper form .search-box .item .key-box {
    font-size: 1.5rem;
  }
}
.search-wrapper form .search-box .item .key-box::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  right: 15px;
  width: 24px;
  height: 24px;
  background-image: url("../images/search_icon.png");
  background-size: contain;
  margin-top: -0.1rem;
}
.search-wrapper form .search-box label {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  color: #0050aa;
}
@media (max-width: 768px) {
  .search-wrapper form .search-box label {
    font-size: 1.4rem;
  }
}
.search-wrapper form .search-box input[type="text"] {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background-color: #fff;
  width: 100%;
  padding: 1rem 1.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.search-wrapper form .search-box select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid #cccccc;
  border-radius: 8px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.search-wrapper form .search-box .select-wrap {
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .search-wrapper form .search-box .select-wrap {
    font-size: 1.5rem;
  }
}
.search-wrapper form .search-box .select-wrap::after {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 12px solid #0050aa;
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  width: 0;
  pointer-events: none;
}
.search-wrapper form .search-box select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.search-wrapper form .search-box select::-ms-expand {
  display: none;
}
.search-wrapper form .area-box {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .search-wrapper form .area-box {
    margin-bottom: 2rem;
  }
}
.search-wrapper form .area-box .area-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}
.search-wrapper form .area-box .area-items::before {
  content: "";
  display: block;
  width: calc(100% / 5);
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media (max-width: 768px) {
  .search-wrapper form .area-box .area-items::before {
    width: calc(100% / 3);
  }
}
.search-wrapper form .area-box .area-items::after {
  content: "";
  display: block;
  width: calc(100% / 5);
}
@media (max-width: 768px) {
  .search-wrapper form .area-box .area-items::after {
    width: calc(100% / 3);
  }
}
.search-wrapper form .area-box .area-items label {
  width: calc(100% / 5);
  padding: 0 0.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 1rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .search-wrapper form .area-box .area-items label {
    width: calc(100% / 3);
  }
}
.search-wrapper form .area-box .area-items label input {
  display: none;
}
.search-wrapper form .area-box .area-items label span {
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 20px;
  padding: 1rem 2rem;
  background-color: #f0f0f0;
  display: block;
}
@media (max-width: 768px) {
  .search-wrapper form .area-box .area-items label span {
    font-size: 1.4rem;
    padding: 1.5rem;
  }
}
.search-wrapper form .area-box .area-items label input:checked + span {
  color: #fff;
  background: #0050aa;
  /* 背景色を薄い赤に */
}
.search-wrapper form .check-box .tech-block {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .search-wrapper form .check-box .tech-block {
    margin-bottom: 3rem;
  }
}
.search-wrapper form .check-box .facility-block {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 3rem;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .search-wrapper form .check-box .facility-block {
    padding-bottom: 2rem;
    margin-bottom: 4rem;
  }
}
.search-wrapper form .check-box .title {
  background-color: #dfecf7;
  padding: 1.5rem 2rem;
  cursor: pointer;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  position: relative;
  line-height: 1;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.search-wrapper form .check-box .title::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: #0050aa;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
@media (max-width: 768px) {
  .search-wrapper form .check-box .title::before {
    height: 2px;
  }
}
.search-wrapper form .check-box .title::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: #0050aa;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
@media (max-width: 768px) {
  .search-wrapper form .check-box .title::after {
    height: 2px;
  }
}
.search-wrapper form .check-box .title.open::before {
  opacity: 0;
}
.search-wrapper form .check-box .title.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.search-wrapper form .check-box .inner {
  display: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.5;
  text-indent: -2.5rem;
  width: 100%;
  z-index: 10;
}
@media (max-width: 768px) {
  .search-wrapper form .check-box .inner {
    padding: 0;
  }
}
.search-wrapper form .check-box .inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.search-wrapper form .check-box .inner ul li {
  width: calc(100% / 3);
  margin-bottom: 1.5rem;
  position: relative;
  letter-spacing: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .search-wrapper form .check-box .inner ul li {
    width: 100%;
  }
}
.search-wrapper form .check-box .inner label {
  color: #000;
  font-size: 1.5rem;
  font-weight: 500;
  padding-left: 6rem;
}
.search-wrapper .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 8rem;
  -moz-column-gap: 8rem;
  column-gap: 8rem;
}
@media (max-width: 768px) {
  .search-wrapper .btn-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.search-wrapper .btn-box .btns {
  text-align: center;
  max-width: 265px;
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1rem;
  padding: 2rem;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  border-radius: 50px;
  border: none;
  font-size: 1.6rem;
  background-image: url("../images/btn_arrow.png");
  background-repeat: no-repeat;
  background-position: right 20px top 50%;
}
@media (max-width: 768px) {
  .search-wrapper .btn-box .btns {
    max-width: 245px;
    padding: 1.5rem;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
  }
}
.search-wrapper .btn-box .btns.submit {
  background-color: #0050aa;
  border: 1px solid #0050aa;
}
.search-wrapper .btn-box .btns.withdraw-btn {
  background-color: #dc3545;
  border: 1px solid #dc3545;
  background-size: 9px 15px;
}
.search-wrapper .btn-box .btns.submit:hover {
  background-color: #fff;
  color: #0050aa;
  background-image: url("../images/btn_arrow_hover.png");
  opacity: 1;
}

.search-wrapper .btn-box .btns.withdraw-btn:hover {
  background-color: #fff;
  color: #dc3545;
  background-image: url("../images/btn_arrow_hover_red.png");
  background-size: 9px 15px;
  opacity: 1;
}
.search-wrapper .btn-box .btns.reset {
  background-color: #a2a2a2;
}
.search-wrapper .btn-box .btns.reset:hover {
  opacity: 0.8;
}
.search-wrapper .btn-box .btns.white {
  background-color: #fff;
  color: #0050aa;
  border: 1px solid #0050aa;
  background-image: url("../images/btn_arrow_left_hover.png");
  background-repeat: no-repeat;
  background-position: left 20px top 50%;
  text-align: center;
}
.search-wrapper .btn-box .btns.white:hover {
  background-color: #0050aa;
  color: #fff;
  background-image: url("../images/btn_arrow_left.png");
  opacity: 1;
}
@media (max-width: 768px) {
  .search-wrapper .btn-box .btns:nth-of-type(2) {
    margin-top: 1rem;
  }
}

input[type="checkbox"] {
  display: none;
}

.checkbox {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  width: 100%;
  padding-left: 9rem;
}
@media (max-width: 768px) {
  .checkbox {
    padding-left: 8.5rem;
  }
}
.checkbox::before {
  border: 1px solid #cccccc;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .checkbox::before {
    width: 20px;
    height: 20px;
  }
}
.checkbox::after {
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  left: 7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  margin-top: -3px;
}

input[type="checkbox"]:checked + .checkbox::after {
  opacity: 1;
}

.result-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.result-wrapper .flex-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .result-wrapper .flex-block {
    display: block;
    margin-bottom: 4rem;
  }
}
.result-wrapper .flex-block .pagination {
  margin: 0 !important;
}
.result-wrapper .flex-block p {
  color: #0050aa;
  font-weight: 700;
  font-size: 3.2rem;
  letter-spacing: 0.3rem;
  line-height: 1;
}
@media (max-width: 834px) {
  .result-wrapper .flex-block p {
    font-size: 2.6rem;
  }
}
@media (max-width: 768px) {
  .result-wrapper .flex-block p {
    font-size: 1.8rem;
    margin-bottom: 4rem;
    letter-spacing: 0.2rem;
  }
}
.result-wrapper .result-items {
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .result-wrapper .result-items {
    margin-bottom: 4rem;
  }
}
.result-wrapper .result-items .item {
  padding: 4rem;
  background-color: #fff;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .result-wrapper .result-items .item {
    padding: 3rem 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.result-wrapper .result-items .item:last-of-type {
  margin-bottom: 0;
}
.result-wrapper .result-items .item .img {
  width: 27%;
  border: 1px solid #e5e5e5;
  border-radius: 0 20px 20px 20px;
  position: relative;
}
@media (max-width: 768px) {
  .result-wrapper .result-items .item .img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.result-wrapper .result-items .item .img .trimming {
  overflow: hidden;
  position: relative;
  padding-top: 75.2%;
}
.result-wrapper .result-items .item .img .trimming::before {
  content: "";
  display: block;
}
.result-wrapper .result-items .item .img .trimming img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0 20px 20px 20px;
}
.result-wrapper .result-items .item .img p.tag {
  width: 90px;
  color: #fff;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 768px) {
  .result-wrapper .result-items .item .img p.tag {
    width: 80px;
  }
}
.result-wrapper .result-items .item .img p.tag.city1 {
  background-color: #5778e6;
}
.result-wrapper .result-items .item .img p.tag.city2 {
  background-color: #2fa5e2;
}
.result-wrapper .result-items .item .img p.tag.city3 {
  background-color: #10b7c2;
}
.result-wrapper .result-items .item .img p.tag.city4 {
  background-color: #59bf60;
}
.result-wrapper .result-items .item .img p.tag.city5 {
  background-color: #318be7;
}
.result-wrapper .result-items .item .img p.tag.city6 {
  background-color: #13b1d3;
}
.result-wrapper .result-items .item .img p.tag.city7 {
  background-color: #1ec091;
}
.result-wrapper .result-items .item .img p.tag.city8 {
  background-color: #81c53f;
}
.result-wrapper .result-items .item .detail-block {
  width: 73%;
  padding-left: 4.5%;
}
@media (max-width: 768px) {
  .result-wrapper .result-items .item .detail-block {
    width: 100%;
    padding-left: 0;
  }
}
.result-wrapper .result-items .item .detail-block p {
  font-weight: 700;
}
.result-wrapper .result-items .item .detail-block p.name {
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .result-wrapper .result-items .item .detail-block p.name {
    font-size: 1.7rem;
  }
}
.result-wrapper .result-items .item .detail-block p.category {
  font-size: 1.6rem;
  color: #0050aa;
  line-height: 1;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .result-wrapper .result-items .item .detail-block p.category {
    font-size: 1.4rem;
  }
}
.result-wrapper .result-items .item .detail-block .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .result-wrapper .result-items .item .detail-block .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.result-wrapper .result-items .item .detail-block .flex ul {
  background-color: #f0f0f0;
  padding: 2rem 1.6rem;
  border-radius: 10px;
  width: 66.666%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .result-wrapper .result-items .item .detail-block .flex ul {
    width: 100%;
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
}
.result-wrapper .result-items .item .detail-block .flex ul li {
  line-height: 1;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .result-wrapper .result-items .item .detail-block .flex ul li {
    font-size: 1.2rem;
  }
}
.result-wrapper .result-items .item .detail-block .flex ul li:last-of-type {
  margin-bottom: 0;
}
.result-wrapper .result-items .item .detail-block .flex ul li span {
  font-weight: 700;
}
.result-wrapper .result-items .item .detail-block .flex a {
  width: 28.5%;
  background-color: #0050aa;
  text-align: center;
  padding: 2rem;
  line-height: 1;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  background-image: url("../images/btn_arrow.png");
  background-repeat: no-repeat;
  background-position: right 20px top 50%;
  border: 1px solid #0050aa;
}
@media (max-width: 834px) {
  .result-wrapper .result-items .item .detail-block .flex a {
    padding: 1.5rem;
    font-size: 1.5rem;
    background-position: right 15px top 50%;
    max-width: 340px;
  }
}
@media (max-width: 768px) {
  .result-wrapper .result-items .item .detail-block .flex a {
    width: 100%;
    font-size: 1.4rem;
  }
}
.result-wrapper .result-items .item .detail-block .flex a:hover {
  background-color: #fff;
  color: #0050aa;
  background-image: url("../images/btn_arrow_hover.png");
  opacity: 1;
}

.result-container .result-accordion {
  max-width: 1000px;
  margin: 0 auto 10rem;
}
@media (max-width: 768px) {
  .result-container .result-accordion {
    margin-bottom: 4rem;
  }
}
.result-container .result-accordion .accordion-title {
  position: relative;
  background-color: #5c93d1;
  padding: 1rem 2rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}
.result-container .result-accordion .accordion-title::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
@media (max-width: 768px) {
  .result-container .result-accordion .accordion-title::before {
    height: 2px;
  }
}
.result-container .result-accordion .accordion-title::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
@media (max-width: 768px) {
  .result-container .result-accordion .accordion-title::after {
    height: 2px;
  }
}
.result-container .result-accordion .accordion-title.open::before {
  opacity: 0;
}
.result-container .result-accordion .accordion-title.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.result-container .result-accordion .search-wrapper {
  display: none;
  border-radius: 0 0 20px 20px;
}

.result-det-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.result-det-wrapper h2 {
  color: #0050aa;
  font-weight: 700;
  line-height: 1;
  font-size: 4rem;
  letter-spacing: 0.3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .result-det-wrapper h2 {
    font-size: 2rem;
    letter-spacing: 0.2rem;
    margin-bottom: 2rem;
  }
}
.result-det-wrapper .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .result-det-wrapper .tags {
    margin-bottom: 3rem;
  }
}
.result-det-wrapper .tags li {
  line-height: 1;
  padding: 1rem;
  background-color: #fff;
  color: #0050aa;
  font-weight: 700;
  margin-right: 1rem;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .result-det-wrapper .tags li {
    font-size: 1.3rem;
  }
}
.result-det-wrapper .tags li:first-of-type {
  width: 90px;
  text-align: center;
}
.result-det-wrapper .tags li.city1 {
  background-color: #5778e6;
  color: #fff;
}
.result-det-wrapper .tags li.city2 {
  color: #fff;
  background-color: #2fa5e2;
}
.result-det-wrapper .tags li.city3 {
  color: #fff;
  background-color: #10b7c2;
}
.result-det-wrapper .tags li.city4 {
  color: #fff;
  background-color: #59bf60;
}
.result-det-wrapper .tags li.city5 {
  color: #fff;
  background-color: #318be7;
}
.result-det-wrapper .tags li.city6 {
  color: #fff;
  background-color: #13b1d3;
}
.result-det-wrapper .tags li.city7 {
  color: #fff;
  background-color: #1ec091;
}
.result-det-wrapper .tags li.city8 {
  color: #fff;
  background-color: #81c53f;
}
.result-det-wrapper .flex-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .result-det-wrapper .flex-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 4rem;
  }
}
.result-det-wrapper .flex-block .img {
  width: 30%;
}
@media (max-width: 768px) {
  .result-det-wrapper .flex-block .img {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.result-det-wrapper .flex-block .img .trimming {
  overflow: hidden;
  position: relative;
  padding-top: 75.333%;
}
.result-det-wrapper .flex-block .img .trimming::before {
  content: "";
  display: block;
}
.result-det-wrapper .flex-block .img .trimming img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 20px;
}
.result-det-wrapper .flex-block .inner-contents {
  width: 70%;
  margin-bottom: 0;
  padding-left: 7%;
}
@media (max-width: 834px) {
  .result-det-wrapper .flex-block .inner-contents {
    padding-left: 4%;
  }
}
@media (max-width: 768px) {
  .result-det-wrapper .flex-block .inner-contents {
    width: 100%;
    padding-left: 0;
  }
}
.result-det-wrapper .flex-block .inner-contents p {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.result-det-wrapper .inner-contents {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .result-det-wrapper .inner-contents {
    margin-bottom: 4rem;
  }
}
.result-det-wrapper .inner-contents p {
  background-color: #fff;
  padding: 3rem;
  border-radius: 0 0 20px 20px;
}
@media (max-width: 768px) {
  .result-det-wrapper .inner-contents p {
    padding: 2rem;
    border-radius: 0 0 15px 15px;
  }
}
.result-det-wrapper .inner-contents p.catch {
  background-color: #b4d2ec;
  color: #0050aa;
  font-weight: bold;
  padding: 2rem;
  line-height: 1;
  border-radius: 20px 20px 0 0;
  margin-top: 2rem;
}
.result-det-wrapper .database-table-block {
  margin-bottom: 10rem;
}
@media (max-width: 768px) {
  .result-det-wrapper .database-table-block {
    margin-bottom: 6rem;
  }
}
.result-det-wrapper .database-table-block table {
  width: 100%;
  line-height: 1.5;
  border-collapse: collapse;
}
.result-det-wrapper .database-table-block table tr {
  border-bottom: 2px solid #dfecf7;
}
.result-det-wrapper .database-table-block table tr:last-of-type {
  border-bottom: 0;
}
.result-det-wrapper .database-table-block table th {
  background-color: #b4d2ec;
  width: 15%;
  padding: 1.5rem 2rem;
  text-align: left;
  vertical-align: middle;
  color: #0050aa;
  font-weight: 700;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  letter-spacing: 0.1rem;
}
@media (max-width: 834px) {
  .result-det-wrapper .database-table-block table th {
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  .result-det-wrapper .database-table-block table th {
    width: 27%;
  }
}
.result-det-wrapper .database-table-block table td {
  background-color: #fff;
  width: 35%;
  padding: 1.5rem 2rem;
  vertical-align: middle;
  font-weight: 500;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 834px) {
  .result-det-wrapper .database-table-block table td {
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  .result-det-wrapper .database-table-block table td {
    width: 73%;
  }
}
.result-det-wrapper .database-table-block table .radius-topLeft {
  border-radius: 20px 0 0 0;
}
@media (max-width: 768px) {
  .result-det-wrapper .database-table-block table .radius-topLeft {
    border-radius: 15px 0 0 0;
  }
}
.result-det-wrapper .database-table-block table .radius-topRight {
  border-radius: 0 20px 0 0;
}
@media (max-width: 768px) {
  .result-det-wrapper .database-table-block table .radius-topRight {
    border-radius: 0 15px 0 0;
  }
}
.result-det-wrapper .database-table-block table .radius-bottomLeft {
  border-radius: 0 0 0 20px;
}
@media (max-width: 768px) {
  .result-det-wrapper .database-table-block table .radius-bottomLeft {
    border-radius: 0 0 0 15px;
  }
}
.result-det-wrapper .database-table-block table .radius-bottomRight {
  border-radius: 0 0 20px 0;
}
@media (max-width: 768px) {
  .result-det-wrapper .database-table-block table .radius-bottomRight {
    border-radius: 0 0 15px 0;
  }
}

/* =====================
   Favorite component
   ===================== */
.favorite {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  color: #666;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.favorite img {
  width: 17px;
  margin-right: 0.3rem;
}

.favorite span.border {
  border-left: 1px solid #e5e5e5;
  padding-left: 0.8rem;
  margin-left: 0.8rem;
}

/* Modifier – interactive button variant */
.favorite--button,
button.favorite {
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.favorite--button.marked,
button.favorite.marked {
  background-color: #5c93d1;
  color: #fff;
  border: none;
}

/* Modifier – static text display variant */
.favorite--text,
div.favorite {
  margin-bottom: 2rem;
}

.favorite--text .favorite-count,
div.favorite .favorite-count {
  font-weight: bold;
  color: #333;
  margin-right: 0.3rem;
}
/* ===== End favorite refactor ===== */

.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 8rem;
  -moz-column-gap: 8rem;
  column-gap: 8rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.btn-wrap a {
  margin: 0;
}

section.top_about-container {
  padding: 0 1.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-bottom: 16rem;
}
@media (max-width: 768px) {
  section.top_about-container {
    padding-bottom: 7rem;
  }
}
section.top_about-container h2 {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  section.top_about-container h2 {
    width: 50.666%;
  }
}
section.top_about-container h2 img {
  width: 100%;
}
section.top_about-container .map {
  margin-top: -6rem;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  section.top_about-container .map {
    margin-top: 0;
    margin-bottom: 2rem;
  }
}
section.top_about-container .about_contents-wrapper {
  margin-bottom: 12rem;
}
@media (max-width: 768px) {
  section.top_about-container .about_contents-wrapper {
    margin-bottom: 6rem;
  }
}
section.top_about-container .advantage-container {
  margin-bottom: 10rem;
}
@media (max-width: 768px) {
  section.top_about-container .advantage-container {
    margin-bottom: 5rem;
  }
}
section.top_about-container .textarea {
  background-color: #fff;
  padding: 5rem 6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  section.top_about-container .textarea {
    padding: 3rem 2rem;
    margin-bottom: 3rem;
  }
}
section.top_about-container .textarea:last-of-type {
  margin-bottom: 0;
}
section.top_about-container .textarea p {
  text-align: left;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  section.top_about-container .textarea p {
    margin-bottom: 3rem;
  }
}

.about_contents-wrapper .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -1.5rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .about_contents-wrapper .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.about_contents-wrapper .content {
  width: calc(100% / 2);
  padding: 0 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .about_contents-wrapper .content {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.about_contents-wrapper .content p.no {
  max-width: 50px;
  width: 9%;
}
@media (max-width: 768px) {
  .about_contents-wrapper .content p.no {
    max-width: 44px;
    width: 12%;
  }
}
.about_contents-wrapper .content .textblock {
  width: 88%;
  position: relative;
  padding: 2rem 3rem;
  max-width: 100%;
  font-weight: bold;
  background: #fff;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}
@media (max-width: 768px) {
  .about_contents-wrapper .content .textblock {
    width: 84%;
    padding: 2rem;
  }
}
.about_contents-wrapper .content .textblock::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  left: -30px;
  border: 20px solid transparent;
  border-right: 40px solid #fff;
}
.about_contents-wrapper .content .textblock p {
  position: relative;
  z-index: 5;
  font-weight: bold;
}
.about_contents-wrapper .content.fullWidth {
  width: 100%;
  padding: 0;
}
.about_contents-wrapper .content.fullWidth p.no {
  width: 5%;
}
@media (max-width: 768px) {
  .about_contents-wrapper .content.fullWidth p.no {
    width: 12%;
    max-width: 44px;
  }
}
.about_contents-wrapper .content.fullWidth .textblock {
  width: 94%;
}
@media (max-width: 768px) {
  .about_contents-wrapper .content.fullWidth .textblock {
    width: 84%;
  }
}

.advantage-container {
  width: 100%;
  margin: 0 auto;
}
.advantage-container .flex-pd20 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -2rem;
}
@media (max-width: 834px) {
  .advantage-container .flex-pd20 {
    margin: 0 -1rem;
  }
}
@media (max-width: 768px) {
  .advantage-container .flex-pd20 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
  }
}
.advantage-container .flex-pd20 .contents {
  width: calc(100% / 2);
  padding: 0 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .advantage-container .flex-pd20 .contents {
    width: 100%;
    padding: 0;
  }
}
.advantage-container .flex-pd10 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -1rem;
}
@media (max-width: 768px) {
  .advantage-container .flex-pd10 {
    margin: 0 -0.7rem;
  }
}
@media (max-width: 768px) {
  .advantage-container .top-ttl {
    margin-bottom: 1rem;
  }
}
.advantage-container .top-ttl .upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.advantage-container .top-ttl .upper .jp {
  font-size: 2rem;
  font-weight: bold;
  color: #0050aa;
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  .advantage-container .top-ttl .upper .jp {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}
.advantage-container .top-ttl .upper .eng {
  font-size: 8rem;
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
  color: #dfecf7;
  margin-left: -2rem;
}
@media (max-width: 768px) {
  .advantage-container .top-ttl .upper .eng {
    font-size: 5rem;
    margin-left: -1rem;
  }
}
.advantage-container .top-ttl .bold {
  font-weight: bold;
  font-size: 3.2rem;
  letter-spacing: 0.2rem;
  color: #fff;
  background-color: #0050aa;
  padding: 2rem 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1;
  margin-top: -2rem;
  text-align: center;
  position: relative;
  z-index: 5;
}
@media (max-width: 834px) {
  .advantage-container .top-ttl .bold {
    font-size: 2.6rem;
  }
}
@media (max-width: 768px) {
  .advantage-container .top-ttl .bold {
    font-size: 1.7rem;
    padding: 1.5rem 0;
    margin-top: -1.5rem;
    letter-spacing: 0.1rem;
  }
}
.advantage-container .gray-cmt {
  margin-top: 5rem;
  margin-bottom: 4rem;
}
@media (max-width: 834px) {
  .advantage-container .gray-cmt {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .advantage-container .gray-cmt {
    margin-top: 0;
  }
}

.icon-item {
  padding: 0 1rem;
  width: calc(100% / 2);
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .icon-item {
    padding: 0 0.7rem;
  }
}
.icon-item img {
  display: block;
  margin: 0 auto -1px;
  max-width: 150px;
  width: 100%;
}
@media (max-width: 768px) {
  .icon-item img {
    max-width: 100px;
  }
}
.icon-item img.chart {
  width: 100%;
  max-width: none;
}
.icon-item .balloon {
  width: 100%;
  position: relative;
  display: inline-block;
  padding: 1.5rem 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #0050aa;
  font-size: 1.8rem;
  line-height: 1;
  background: #fff;
  border-radius: 100px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .icon-item .balloon {
    font-size: 1.5rem;
    padding: 1rem;
  }
}
.icon-item .balloon::before {
  content: "";
  position: absolute;
  top: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border: 6px solid transparent;
  border-top: 10px solid #fff;
}
.icon-item .no-block {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 834px) {
  .icon-item .no-block {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .icon-item .no-block {
    font-size: 1.6rem;
  }
}
.icon-item .no-block .no {
  color: #0050aa;
  font-family: "Josefin Sans", sans-serif;
  font-size: 12rem;
  font-style: italic;
}
@media (max-width: 834px) {
  .icon-item .no-block .no {
    font-size: 8rem;
  }
}
@media (max-width: 768px) {
  .icon-item .no-block .no {
    font-size: 7rem;
  }
}
.icon-item .no-block .blue {
  color: #0050aa;
}

.about-container .bg-blue {
  background-image: url("../images/bg_light-blue02.png");
  padding-top: 12rem;
}
@media (max-width: 768px) {
  .about-container .bg-blue {
    background-image: url("../images/bg_light-blue02_sp.png");
    padding-top: 5rem;
  }
}
.about-container .bg-blue.light-blue {
  background-image: url("../images/bg_light-blue01.png");
  padding: 13rem 1.5rem 9rem;
}
@media (max-width: 768px) {
  .about-container .bg-blue.light-blue {
    background-image: url("../images/bg_light-blue01_sp.png");
    padding: 6rem 1.5rem;
  }
}

.about-container .pd-wrapper:first-of-type {
  padding-top: 0;
}

.about-container img.map {
  margin-bottom: 3rem;
}

.about-container .about_contents-wrapper .textblock {
  background-color: #f2f7fb;
}
.about-container .about_contents-wrapper .textblock::before {
  border-right: 40px solid #f2f7fb;
}

.about-container .about_contents-wrapper .content.fullWidth {
  margin-bottom: 0;
}

.about-container .advantage-container .top-ttl {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .about-container .advantage-container .top-ttl {
    margin-bottom: 1.5rem;
  }
}
.about-container .advantage-container .top-ttl span.eng {
  margin-left: 0 !important;
  font-size: 6rem !important;
  color: #b4d2ec !important;
}
@media (max-width: 768px) {
  .about-container .advantage-container .top-ttl span.eng {
    font-size: 5rem !important;
  }
}
.about-container .advantage-container .top-ttl p.bold {
  font-size: 2rem;
  padding: 1.5rem 0;
  position: relative;
  z-index: 5;
  margin-top: -1.5rem;
}
@media (max-width: 834px) {
  .about-container .advantage-container .top-ttl p.bold {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .about-container .advantage-container .top-ttl p.bold {
    font-size: 1.5rem;
    padding: 1rem 0;
  }
}

@media (max-width: 834px) {
  .about-container .advantage-container .contents {
    padding: 0 1rem;
  }
}

.about-container .advantage-container .contents.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 1rem;
}
@media (max-width: 768px) {
  .about-container .advantage-container .contents.flex {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}
.about-container .advantage-container .contents.flex .item {
  width: calc(100% / 2);
}
.about-container .advantage-container .contents.flex .item:first-of-type {
  margin-right: 3rem;
}
@media (max-width: 834px) {
  .about-container .advantage-container .contents.flex .item:first-of-type {
    margin-right: 2rem;
  }
}
@media (max-width: 768px) {
  .about-container .advantage-container .contents.flex .item:first-of-type {
    margin-right: 0;
    padding-right: 0.7rem;
  }
}
@media (max-width: 768px) {
  .about-container .advantage-container .contents.flex .item:last-of-type {
    padding-left: 0.7rem;
  }
}
.about-container .advantage-container .contents.flex .flex-pd10 {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.about-container .advantage-container .contents.flex .icon-item {
  width: 100%;
}

.about-container .advantage-container .contents .icon-item.mb-none {
  margin-bottom: 0;
}

.about-container .advantage-container .icon-item .balloon {
  background-color: #b4d2ec;
}
.about-container .advantage-container .icon-item .balloon::before {
  border-top: 10px solid #b4d2ec;
}

.about-container .advantage-container .icon-item .no-block {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .about-container .advantage-container .icon-item .no-block {
    font-size: 1.5rem;
  }
}
.about-container .advantage-container .icon-item .no-block .no {
  font-size: 6rem;
}

.renkei-container .bg-blue {
  background-image: url("../images/bg_light-blue02.png");
  padding-top: 12rem;
}
@media (max-width: 768px) {
  .renkei-container .bg-blue {
    background-image: url("../images/bg_light-blue02_sp.png");
    padding-top: 0;
  }
}
.renkei-container .bg-blue.light-blue {
  background-image: url("../images/bg_light-blue01.png");
  padding-top: 13rem;
  padding-bottom: 9rem;
  padding: 13rem 1.5rem 9rem;
}
@media (max-width: 768px) {
  .renkei-container .bg-blue.light-blue {
    background-image: url("../images/bg_light-blue01_sp.png");
    padding-top: 0;
    padding-bottom: 7rem;
  }
}

.renkei-container .link-btnarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin: 0 auto 5rem;
  max-width: 1000px;
}
@media (max-width: 834px) {
  .renkei-container .link-btnarea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
  }
}
.renkei-container .link-btnarea li {
  background-color: #fff;
  padding: 2rem;
  text-align: center;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 834px) {
  .renkei-container .link-btnarea li {
    width: 70%;
    max-width: 550px;
    position: relative;
  }
}
@media (max-width: 768px) {
  .renkei-container .link-btnarea li {
    width: 100%;
    padding: 1.5rem 2rem;
  }
}
.renkei-container .link-btnarea li:first-of-type {
  border-radius: 20px 0 0 20px;
  border-right: 1px solid #dfecf7;
}
@media (max-width: 834px) {
  .renkei-container .link-btnarea li:first-of-type {
    border-radius: 20px 20px 0 0;
    border-right: none;
    border-bottom: 1px solid #dfecf7;
  }
}
@media (max-width: 768px) {
  .renkei-container .link-btnarea li:first-of-type {
    border-radius: 15px 15px 0 0;
  }
}
.renkei-container .link-btnarea li:last-of-type {
  border-radius: 0 20px 20px 0;
}
@media (max-width: 834px) {
  .renkei-container .link-btnarea li:last-of-type {
    border-radius: 0 0 20px 20px;
  }
}
@media (max-width: 768px) {
  .renkei-container .link-btnarea li:last-of-type {
    border-radius: 0 0 15px 15px;
  }
}
.renkei-container .link-btnarea li a {
  display: block;
  line-height: 24px;
  color: #0050aa;
  font-weight: bold;
}
@media (max-width: 768px) {
  .renkei-container .link-btnarea li a {
    text-align: left;
    line-height: 1.5;
  }
}
.renkei-container .link-btnarea li a img {
  margin-left: 2rem;
  width: 24px;
}
@media (max-width: 834px) {
  .renkei-container .link-btnarea li a img {
    margin-left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    /* Safari用 */
    transform: translateY(-50%);
    right: 20px;
  }
}

.renkei-container .about-wrapper .blue-ttl.left {
  margin-top: 5rem;
}

.renkei-container .data-wrapper .contents-block:nth-of-type(2) {
  margin-top: 14rem;
}
@media (max-width: 768px) {
  .renkei-container .data-wrapper .contents-block:nth-of-type(2) {
    margin-top: 6rem;
  }
}

.renkei-container .data-wrapper img.map {
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .renkei-container .data-wrapper img.map {
    margin-top: 4rem;
  }
}

section.top_pr-container {
  padding-top: 14rem;
}
@media (max-width: 768px) {
  section.top_pr-container {
    padding-top: 5rem;
  }
}
section.top_pr-container .ttl-block {
  max-width: 1260px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  section.top_pr-container .ttl-block {
    margin-bottom: 3rem;
  }
}
section.top_pr-container .ttl-block h2 {
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
  font-size: 6rem;
  letter-spacing: 0.3rem;
  line-height: 1;
}
@media (max-width: 768px) {
  section.top_pr-container .ttl-block h2 {
    font-size: 2.8rem;
  }
}
section.top_pr-container .ttl-block h2 span {
  display: block;
  margin-top: 2rem;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  section.top_pr-container .ttl-block h2 span {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}
section.top_pr-container .ttl-block a {
  color: #0050aa;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
section.top_pr-container .ttl-block a:hover {
  opacity: 0.5;
}
section.top_pr-container .ttl-block a img {
  margin-left: 1rem;
  width: 50px;
}
@media (max-width: 768px) {
  section.top_pr-container .ttl-block a img {
    width: 36px;
  }
}

.pr-block {
  margin-bottom: 12rem;
}
@media (max-width: 768px) {
  .pr-block {
    margin-bottom: 6rem;
  }
}
.pr-block .slick-slide {
  margin-right: 2rem;
  margin-left: 2rem;
  height: inherit !important;
  background-color: #fff;
  border-radius: 0 20px 20px 20px;
}
@media (max-width: 768px) {
  .pr-block .slick-slide {
    margin-right: 1rem;
    margin-left: 1rem;
    border-radius: 0 15px 15px 15px;
  }
}
.pr-block .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.pr-block li {
  position: relative;
}
.pr-block li img {
  border-radius: 0 20px 0 0;
  width: 100%;
}
@media (max-width: 768px) {
  .pr-block li img {
    border-radius: 0 15px 0 0;
  }
}
.pr-block li p.tag {
  color: #fff;
  font-weight: bold;
  padding: 1rem 0;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
  letter-spacing: 0.2rem;
  width: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 768px) {
  .pr-block li p.tag {
    width: 80px;
  }
}
.pr-block li p.tag.hachioji {
  background-color: #5778e6;
}
.pr-block li p.tag.fuchu {
  background-color: #2fa5e2;
}
.pr-block li p.tag.chofu {
  background-color: #10b7c2;
}
.pr-block li p.tag.machida {
  background-color: #59bf60;
}
.pr-block li p.tag.hino {
  background-color: #318be7;
}
.pr-block li p.tag.komae {
  background-color: #13b1d3;
}
.pr-block li p.tag.tama {
  background-color: #1ec091;
}
.pr-block li p.tag.inagi {
  background-color: #81c53f;
}
.pr-block li .textarea {
  background-color: #fff;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0 0 20px 20px;
}
@media (max-width: 768px) {
  .pr-block li .textarea {
    border-radius: 0 0 15px 15px;
  }
}
.pr-block li .textarea a {
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .pr-block li .textarea a {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.pr-container .pr-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .pr-container .pr-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 5rem;
  }
}
.pr-container .pr-block::before {
  content: "";
  display: block;
  width: 30.8%;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media (max-width: 768px) {
  .pr-container .pr-block::before {
    width: 100%;
  }
}
.pr-container .pr-block::after {
  content: "";
  display: block;
  width: 30.8%;
}
@media (max-width: 768px) {
  .pr-container .pr-block::after {
    width: 100%;
  }
}
.pr-container .pr-block li {
  width: 30.8%;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .pr-container .pr-block li {
    width: 100%;
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .pr-container .pr-block li:last-of-type {
    margin-bottom: 0;
  }
}

.pr-container .pagination {
  margin-bottom: 0;
}

section.top_news-container {
  padding: 0 1.5rem 14rem;
}
@media (max-width: 768px) {
  section.top_news-container {
    padding: 0 1.5rem 8rem;
  }
}
section.top_news-container .ttl-block {
  margin: 0 auto 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  section.top_news-container .ttl-block {
    margin-bottom: 2rem;
  }
}
section.top_news-container .ttl-block h2 {
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
  font-size: 6rem;
  letter-spacing: 0.3rem;
  line-height: 1;
}
@media (max-width: 768px) {
  section.top_news-container .ttl-block h2 {
    font-size: 2.8rem;
  }
}
section.top_news-container .ttl-block h2 span {
  display: block;
  margin-top: 2rem;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  section.top_news-container .ttl-block h2 span {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}
section.top_news-container .ttl-block a {
  color: #0050aa;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
section.top_news-container .ttl-block a:hover {
  opacity: 0.5;
}
section.top_news-container .ttl-block a img {
  margin-left: 1rem;
  width: 50px;
}
@media (max-width: 768px) {
  section.top_news-container .ttl-block a img {
    width: 36px;
  }
}

section.news-container .max1000 {
  background-color: #fff;
  border-radius: 20px;
  padding: 7rem 6rem;
}
@media (max-width: 768px) {
  section.news-container .max1000 {
    padding: 4rem 1.5rem;
  }
}

section.news-container .news-block {
  padding: 0;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  section.news-container .news-block {
    margin-bottom: 4rem;
  }
}
section.news-container .news-block li {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  section.news-container .news-block li {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}

section.news-container .pagination {
  margin-bottom: 0;
}

section.news_det-container .max1000 {
  margin-bottom: 9rem;
}
@media (max-width: 768px) {
  section.news_det-container .max1000 {
    margin-bottom: 5rem;
  }
}

section.news_det-container .det-block .title-box {
  font-weight: bold;
}
section.news_det-container .det-block .title-box p.date {
  color: #999999;
  display: inline-block;
}
section.news_det-container .det-block .title-box p.tag {
  color: #fff;
  background-color: #0050aa;
  width: 100px;
  font-size: 1.4rem;
  padding: 0.8rem 0;
  display: inline-block;
  margin: 0 1rem;
  line-height: 1;
  text-align: center;
}
@media (max-width: 768px) {
  section.news_det-container .det-block .title-box p.tag {
    font-size: 1.2rem;
    width: 80px;
  }
}
section.news_det-container .det-block .title-box h1 {
  font-size: 3.2rem;
  line-height: 1.7;
  margin: 3rem auto 6rem;
}
@media (max-width: 768px) {
  section.news_det-container .det-block .title-box h1 {
    font-size: 2rem;
    margin: 2rem auto 3rem;
  }
}

section.news_det-container .det-block .textarea {
  font-weight: 500;
}
section.news_det-container .det-block .textarea h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  section.news_det-container .det-block .textarea h2 {
    font-size: 1.6rem;
  }
}
section.news_det-container .det-block .textarea p {
  line-height: 2.5;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  section.news_det-container .det-block .textarea p {
    line-height: 2;
    margin-bottom: 3rem;
  }
}
section.news_det-container .det-block .textarea a {
  color: #0050aa;
  text-decoration: underline;
  display: block;
}
section.news_det-container .det-block .textarea a.pdf {
  background-image: url("../images/pdf_icon.png");
  background-repeat: no-repeat;
  background-position: left 0 top 6px;
  background-size: 16.5px;
  padding-left: 2.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.news-block {
  background-color: #fff;
  padding: 5rem 2rem;
  width: 100%;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .news-block {
    padding: 4rem 3rem;
  }
}
.news-block ul {
  max-width: 1000px;
  margin: 0 auto;
}
.news-block ul li {
  margin-bottom: 2rem;
}
.news-block ul li:last-of-type {
  margin-bottom: 0;
}
.news-block ul li a {
  display: block;
  font-weight: bold;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.news-block ul li a .date {
  color: #999999;
  float: left;
}
.news-block ul li a .date span {
  color: #fff;
  background-color: #0050aa;
  font-size: 1.4rem;
  padding: 0.8rem 0;
  display: inline-block;
  margin: 0 1rem;
  width: 100px;
  line-height: 1;
  text-align: center;
}
@media (max-width: 768px) {
  .news-block ul li a .date span {
    font-size: 1rem;
    width: 72px;
    margin-left: 1.5rem;
  }
}
.news-block ul li a p.title {
  width: 75%;
  float: left;
  padding-left: 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 834px) {
  .news-block ul li a p.title {
    width: 100%;
    padding-left: 0;
    margin-top: 1rem;
    line-height: 1.5;
  }
}
.news-block ul li a p.title.pdf {
  background-image: url("../images/pdf_icon.png");
  background-repeat: no-repeat;
  background-position: left 1rem top 6px;
  background-size: 16.5px;
  padding-left: 3.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 834px) {
  .news-block ul li a p.title.pdf {
    padding-left: 3rem;
    background-position: left 0 top 2px;
  }
}
@media (max-width: 768px) {
  .news-block ul li a p.title.pdf {
    background-position: left 0 top 6px;
    padding-left: 2.5rem;
  }
}

section.banner-container {
  padding: 8rem 1.5rem;
}
@media (max-width: 768px) {
  section.banner-container {
    padding: 4rem 1.5rem 2.5rem;
  }
}
section.banner-container .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  section.banner-container .flex {
    margin-bottom: 2.5rem;
  }
}
section.banner-container .flex::before {
  content: "";
  display: block;
  width: 23.6%;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media (max-width: 768px) {
  section.banner-container .flex::before {
    width: 48%;
  }
}
section.banner-container .flex::after {
  content: "";
  display: block;
  width: 23.6%;
}
@media (max-width: 768px) {
  section.banner-container .flex::after {
    width: 48%;
  }
}
section.banner-container .flex .item {
  width: 23.6%;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  section.banner-container .flex .item {
    width: 48%;
    margin-bottom: 1.5rem;
  }
}
section.banner-container .flex .item a.trimming {
  display: block;
  overflow: hidden;
  position: relative;
  padding-top: 37.735%;
  width: 100%;
}
section.banner-container .flex .item a.trimming::before {
  content: "";
  display: block;
}
section.banner-container .flex .item a.trimming a {
  display: block;
  width: 100%;
  margin-bottom: 0;
}
section.banner-container .flex .item a.trimming img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
section.banner-container .flex .item a.trimming.pr {
  padding-top: 30.188%;
}
section.banner-container .ttl-block {
  max-width: 1260px;
  margin: 0 auto 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
section.banner-container .ttl-block h2 {
  color: #0050aa;
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
  font-size: 6rem;
  letter-spacing: 0.3rem;
  line-height: 1;
}
@media (max-width: 768px) {
  section.banner-container .ttl-block h2 {
    font-size: 2rem;
  }
}
section.banner-container .ttl-block a {
  color: #0050aa;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
section.banner-container .ttl-block a:hover {
  opacity: 0.5;
}
section.banner-container .ttl-block a img {
  margin-left: 1rem;
  width: 50px;
}
@media (max-width: 768px) {
  section.banner-container .ttl-block a img {
    width: 36px;
  }
}

footer {
  width: 100%;
}
footer .max1120 {
  max-width: 1150px;
  padding: 10rem 1.5rem;
}
@media (max-width: 768px) {
  footer .max1120 {
    padding: 5rem 1.5rem;
  }
}
footer .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  footer .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
footer .flex .logo {
  width: 33%;
  max-width: 377px;
}
@media (max-width: 834px) {
  footer .flex .logo {
    width: 28%;
  }
}
@media (max-width: 768px) {
  footer .flex .logo {
    max-width: 222px;
    width: 100%;
    margin-bottom: 4rem;
  }
}
footer .flex .logo img {
  width: 100%;
}
footer .right-wrapper {
  width: 67%;
  padding-left: 8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 834px) {
  footer .right-wrapper {
    padding-left: 5%;
  }
}
@media (max-width: 768px) {
  footer .right-wrapper {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
}
footer .right-wrapper .contents {
  width: 37%;
}
footer .right-wrapper .contents:last-of-type {
  width: 26%;
}
footer .right-wrapper .contents:first-of-type {
  padding-right: 2%;
}
footer .right-wrapper .contents .parts {
  margin-bottom: 2rem;
}
footer .right-wrapper .contents .parts p {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
footer .right-wrapper .contents .parts a {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (max-width: 834px) {
  footer .right-wrapper .contents .parts a {
    font-size: 1.3rem;
  }
}
footer .right-wrapper .contents .parts a.child {
  position: relative;
  padding-left: 1.8rem;
  font-weight: 500;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 1rem;
  line-height: 1.7;
}
footer .right-wrapper .contents .parts a.child::before {
  content: "";
  width: 10px;
  height: 1px;
  display: block;
  background-color: #fff;
  position: absolute;
  top: 12.75px;
  left: 0;
}
footer .right-wrapper .contents .parts .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
footer .right-wrapper .contents .parts .flex .child {
  width: calc(100% / 2);
}
footer .right-wrapper .navi_item {
  position: relative;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: bold;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 1.5rem;
}
footer .right-wrapper .navi_item:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1.5rem;
}
footer .right-wrapper .navi_item p,
footer .right-wrapper .navi_item a {
  display: block;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #0050aa;
  line-height: 24px;
}
footer .right-wrapper .navi_item a {
  background-image: url(../images/arrow_right-icon.png);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: right 0 top 50%;
}
footer .copyright {
  background-color: #0050aa;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2rem;
  color: #fff;
  line-height: 1;
  font-weight: 500;
  font-size: 1.2rem;
  width: 100%;
}
@media (max-width: 768px) {
  footer .copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
footer .copyright a {
  color: #fff;
  font-weight: 500;
}
@media (max-width: 768px) {
  footer .copyright a {
    font-size: 1rem;
  }
  footer .copyright a:last-of-type {
    margin-bottom: 2rem;
  }
}

.el_spChildNavOpen_wrapper03,
.el_spChildNavOpen_wrapper04 {
  position: relative;
}
.el_spChildNavOpen_wrapper03::before,
.el_spChildNavOpen_wrapper04::before {
  content: "";
  background-image: url(../images/icon_plus_blue.png);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: right 0 top 50%;
  width: 24px;
  height: 24px;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.el_spChildNavOpen_wrapper03.on:before,
.el_spChildNavOpen_wrapper04.on:before {
  content: "";
  background-image: url(../images/icon_minus_blue.png);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: right 0 top 50%;
  width: 24px;
  height: 24px;
  display: inline-block;
}

section.top_message-container {
  padding: 0 1.5rem;
  background-image: url("../images/message_bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto;
}
section.top_message-container .bg {
  max-width: 1000px;
  margin: 0 auto;
  display: block;
  border-radius: 20px;
}
section.top_message-container h2 {
  color: #fff;
  font-size: 5rem;
  letter-spacing: 0.3rem;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
  line-height: 1;
  margin-bottom: 6rem;
  padding-top: 8rem;
}
@media (max-width: 768px) {
  section.top_message-container h2 {
    padding-top: 4rem;
    margin-bottom: 4rem;
    font-size: 2.8rem;
  }
}
section.top_message-container h2 span {
  display: block;
  font-size: 4rem;
  margin-top: 3rem;
  letter-spacing: 0;
  font-weight: bold;
}
@media (max-width: 768px) {
  section.top_message-container h2 span {
    margin-top: 2rem;
    font-size: 1.8rem;
  }
}
section.top_message-container p.text {
  text-align: left;
  color: #fff;
  line-height: 2.3;
  max-width: 920px;
  margin: 0 auto 7rem;
}
@media (max-width: 768px) {
  section.top_message-container p.text {
    margin-bottom: 4rem;
    line-height: 2;
    text-align: left;
  }
}
section.top_message-container .max1120 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 11rem;
}
@media (max-width: 768px) {
  section.top_message-container .max1120 {
    margin-bottom: 4rem;
  }
}
section.top_message-container .max1120 .item {
  width: 23%;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  section.top_message-container .max1120 .item {
    width: 47.5%;
    margin-bottom: 1.5rem;
  }
}
section.top_message-container .max1120 .item img.catch {
  border-radius: 20px 20px 0 0;
  width: 100%;
}
section.top_message-container .max1120 .item .bg-white {
  background-color: #fff;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0 0 20px 20px;
}
@media (max-width: 768px) {
  section.top_message-container .max1120 .item .bg-white {
    padding: 2rem 1rem 1.5rem;
  }
}
section.top_message-container .max1120 .item .name {
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  section.top_message-container .max1120 .item .name {
    font-size: 1.6rem;
  }
}
section.top_message-container .max1120 .item .name span {
  font-size: 1.4rem;
  display: block;
}
@media (max-width: 768px) {
  section.top_message-container .max1120 .item .name span {
    font-size: 1.2rem;
  }
}

section.top_eightStars-container {
  padding-bottom: 12rem;
  position: relative;
}
@media (max-width: 768px) {
  section.top_eightStars-container {
    padding-bottom: 5.5rem;
  }
}
section.top_eightStars-container .bg-wave {
  background-image: url("../images/bg_blue.png");
  background-position: left 0 top 0;
  background-size: 100%;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  z-index: 5;
  width: 100%;
}
@media (max-width: 768px) {
  section.top_eightStars-container .bg-wave {
    background-image: url("../images/bg_blue_sp.png");
  }
}
section.top_eightStars-container .map {
  max-width: 1920px;
  width: 100%;
  display: block;
  margin: 0 auto 1rem;
}
@media (max-width: 768px) {
  section.top_eightStars-container .map {
    margin-bottom: 2rem;
  }
}
section.top_eightStars-container .max1120 {
  max-width: 1160px;
  padding: 0 1.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
section.top_eightStars-container .max1120 h2 {
  font-size: 6rem;
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
  color: #0050aa;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.3rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  section.top_eightStars-container .max1120 h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
  }
}
section.top_eightStars-container .max1120 h2 span {
  font-size: 1.8rem;
  font-weight: bold;
  display: block;
  letter-spacing: 0;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  section.top_eightStars-container .max1120 h2 span {
    font-size: 1.5rem;
  }
}
section.top_eightStars-container .max1120 p {
  font-weight: bold;
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  section.top_eightStars-container .max1120 p {
    text-align: left;
    margin-bottom: 3rem;
  }
}
section.top_eightStars-container p.left {
  font-weight: bold;
  text-align: left;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  section.top_eightStars-container p.left {
    margin-bottom: 3rem;
  }
}
section.top_eightStars-container .btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1rem 14rem;
}
@media (max-width: 768px) {
  section.top_eightStars-container .btn-area {
    margin: 0 -0.5rem 8rem;
  }
}
section.top_eightStars-container .btn-area div {
  width: calc(100% / 4);
  padding: 0 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  section.top_eightStars-container .btn-area div {
    width: calc(100% / 2);
    padding: 0 0.5rem;
    margin-bottom: 1rem;
  }
}
section.top_eightStars-container .btn-area .btn {
  width: 100%;
  display: block;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  border-radius: 100px;
  line-height: 1;
}
section.top_eightStars-container .btn-area .btn.hachioji {
  background-color: #5778e6;
}
section.top_eightStars-container .btn-area .btn.fuchu {
  background-color: #2fa5e2;
}
section.top_eightStars-container .btn-area .btn.chofu {
  background-color: #10b7c2;
}
section.top_eightStars-container .btn-area .btn.machida {
  background-color: #59bf60;
}
section.top_eightStars-container .btn-area .btn.hino {
  background-color: #318be7;
}
section.top_eightStars-container .btn-area .btn.komae {
  background-color: #13b1d3;
}
section.top_eightStars-container .btn-area .btn.tama {
  background-color: #1ec091;
}
section.top_eightStars-container .btn-area .btn.inagi {
  background-color: #81c53f;
}
section.top_eightStars-container .search-wrapper {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  section.top_eightStars-container .search-wrapper {
    margin-bottom: 4rem;
  }
}
section.top_eightStars-container a.blue-btn {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  section.top_eightStars-container a.blue-btn {
    margin-bottom: 1.5rem;
  }
}

section.eightStars-container {
  text-align: center;
}
section.eightStars-container .bg-blue {
  background-image: url("../images/bg_light-blue02.png");
}
@media (max-width: 768px) {
  section.eightStars-container .bg-blue {
    background-image: url("../images/bg_light-blue02_sp.png");
  }
}
section.eightStars-container .bg-blue.light-blue {
  background-image: url("../images/bg_light-blue01.png");
  padding-bottom: 10rem;
}
@media (max-width: 768px) {
  section.eightStars-container .bg-blue.light-blue {
    padding-bottom: 8rem;
    background-image: url("../images/bg_light-blue01_sp.png");
  }
}
section.eightStars-container .btnarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto 5rem;
}
@media (max-width: 768px) {
  section.eightStars-container .btnarea {
    margin-bottom: 0;
  }
}
section.eightStars-container .btnarea li {
  width: calc(100% / 4);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 2rem;
  background-color: #fff;
  border-top: 1px solid #dfecf7;
  border-right: 1px solid #dfecf7;
}
@media (max-width: 768px) {
  section.eightStars-container .btnarea li {
    width: calc(100% / 2);
    padding: 1.5rem;
  }
}
section.eightStars-container .btnarea li:nth-of-type(1) {
  border-radius: 20px 0 0 0;
}
@media (max-width: 768px) {
  section.eightStars-container .btnarea li:nth-of-type(1) {
    border-radius: 15px 0 0 0;
  }
}
@media (max-width: 768px) {
  section.eightStars-container .btnarea li:nth-of-type(2) {
    border-radius: 0 15px 0 0;
  }
}
section.eightStars-container .btnarea li:nth-of-type(4) {
  border-radius: 0 20px 0 0;
}
@media (max-width: 768px) {
  section.eightStars-container .btnarea li:nth-of-type(4) {
    border-radius: 0;
  }
}
section.eightStars-container .btnarea li:nth-of-type(5) {
  border-radius: 0 0 0 20px;
}
@media (max-width: 768px) {
  section.eightStars-container .btnarea li:nth-of-type(5) {
    border-radius: 0;
  }
}
@media (max-width: 768px) {
  section.eightStars-container .btnarea li:nth-of-type(7) {
    border-radius: 0 0 0 15px;
  }
}
section.eightStars-container .btnarea li:nth-of-type(8) {
  border-radius: 0 0 20px 0;
}
@media (max-width: 768px) {
  section.eightStars-container .btnarea li:nth-of-type(8) {
    border-radius: 0 0 15px 0;
  }
}
section.eightStars-container .btnarea a {
  width: 100%;
  height: 24px;
  display: block;
  font-weight: bold;
  color: #0050aa;
  line-height: 24px;
  background-image: url("../images/arrow_down.png");
  background-repeat: no-repeat;
  background-position: right 0 top 50%;
  background-size: 24px;
}
section.eightStars-container .message-wrapper .textarea {
  text-align: center;
}
section.eightStars-container .message-wrapper .textarea img {
  border-radius: 20px;
  margin-bottom: 6rem;
  max-width: 330px;
  width: 100%;
}
@media (max-width: 768px) {
  section.eightStars-container .message-wrapper .textarea img {
    margin-bottom: 3rem;
  }
}
section.eightStars-container .message-wrapper .textarea p span {
  display: block;
  font-weight: bold;
  text-align: right;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  section.eightStars-container .message-wrapper .textarea p span {
    margin-top: 2rem;
  }
}
section.eightStars-container .about-slider {
  max-width: 680px;
  margin: 0 auto 10rem;
}
@media (max-width: 768px) {
  section.eightStars-container .about-slider {
    margin-bottom: 6rem;
  }
}
section.eightStars-container .about-slider li {
  border-radius: 20px;
  max-width: 680px;
}
section.eightStars-container .about-slider li .trimming {
  overflow: hidden;
  position: relative;
  padding-top: 66.911%;
}
section.eightStars-container .about-slider li .trimming::before {
  content: "";
  display: block;
}
section.eightStars-container .about-slider li .trimming img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}
section.eightStars-container .about-slider .slick-dots {
  bottom: -45px !important;
}
@media (max-width: 768px) {
  section.eightStars-container .about-slider .slick-dots {
    bottom: -30px !important;
  }
}
section.eightStars-container .about-slider .slide-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  cursor: pointer;
  width: 20px;
}
section.eightStars-container .about-slider .prev-arrow {
  left: -60px;
}
section.eightStars-container .about-slider .next-arrow {
  right: -60px;
}
section.eightStars-container .access-wrapper {
  text-align: center;
}
section.eightStars-container .access-wrapper img {
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto 6rem;
  width: 100%;
}
@media (max-width: 768px) {
  section.eightStars-container .access-wrapper img {
    margin-bottom: 3rem;
  }
}
section.eightStars-container .data-wrapper .contents-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  section.eightStars-container .data-wrapper .contents-block {
    padding: 4rem 1.3rem 2rem;
  }
}
section.eightStars-container .data-wrapper .contents-block:first-of-type {
  margin-bottom: 8rem;
}
section.eightStars-container .data-wrapper .contents-block .icon-item {
  width: calc(100% / 4);
}
@media (max-width: 768px) {
  section.eightStars-container .data-wrapper .contents-block .icon-item {
    width: calc(100% / 2);
    padding: 0 0.7rem;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  section.eightStars-container
    .data-wrapper
    .contents-block
    .icon-item:nth-of-type(1),
  section.eightStars-container
    .data-wrapper
    .contents-block
    .icon-item:nth-of-type(2) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
section.eightStars-container
  .data-wrapper
  .contents-block
  .icon-item:nth-of-type(n + 5) {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  section.eightStars-container
    .data-wrapper
    .contents-block
    .icon-item:nth-of-type(n + 5) {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  section.eightStars-container .data-wrapper .contents-block .icon-item.chart {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (max-width: 768px) {
  section.eightStars-container
    .data-wrapper
    .contents-block
    .icon-item.chart
    img {
    max-width: none;
  }
}
section.eightStars-container .data-wrapper .contents-block .icon-item .balloon {
  background-color: #b4d2ec;
  padding: 1.5rem 0.5rem;
}
@media (max-width: 834px) {
  section.eightStars-container
    .data-wrapper
    .contents-block
    .icon-item
    .balloon {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  section.eightStars-container
    .data-wrapper
    .contents-block
    .icon-item
    .balloon {
    padding: 1rem 0;
    font-size: 1.3rem;
  }
}
section.eightStars-container
  .data-wrapper
  .contents-block
  .icon-item
  .balloon::before {
  border-top: 10px solid #b4d2ec;
}
section.eightStars-container
  .data-wrapper
  .contents-block
  .icon-item
  .no-block {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  section.eightStars-container
    .data-wrapper
    .contents-block
    .icon-item
    .no-block {
    font-size: 1.5rem;
  }
}
section.eightStars-container .data-wrapper .contents-block .icon-item span.no {
  font-size: 4rem;
}
@media (max-width: 834px) {
  section.eightStars-container
    .data-wrapper
    .contents-block
    .icon-item
    span.no {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  section.eightStars-container
    .data-wrapper
    .contents-block
    .icon-item
    span.no {
    font-size: 2.6rem;
  }
}
@media (max-width: 768px) {
  section.eightStars-container .support-wrapper {
    margin-bottom: 4rem;
  }
}
section.eightStars-container .support-wrapper .textarea {
  margin-bottom: 4rem;
}
section.eightStars-container .support-wrapper .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  section.eightStars-container .support-wrapper .flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 4rem;
  }
}
section.eightStars-container .support-wrapper .flex img {
  max-width: 200px;
  width: 100%;
  margin: 0 1.5rem;
}
@media (max-width: 768px) {
  section.eightStars-container .support-wrapper .flex img {
    max-width: 100px;
    margin: 0 1rem;
  }
}
section.eightStars-container .support-wrapper .flex .spacer {
  width: 100%;
}
section.eightStars-container .character-wrapper {
  padding: 12rem 1.5rem 0;
}
@media (max-width: 768px) {
  section.eightStars-container .character-wrapper {
    padding-top: 6rem;
  }
}
@media (max-width: 768px) {
  section.eightStars-container .character-wrapper .subttl {
    padding: 0.7rem 1.5rem;
  }
}
section.eightStars-container .character-wrapper .contents-block {
  margin-bottom: 9rem;
}
@media (max-width: 768px) {
  section.eightStars-container .character-wrapper .contents-block {
    margin-bottom: 6rem;
  }
}
section.eightStars-container .character-wrapper .contents-block:last-of-type {
  margin-bottom: 0;
}
section.eightStars-container .character-wrapper h3 {
  margin-bottom: 10rem;
}
@media (max-width: 768px) {
  section.eightStars-container .character-wrapper h3 {
    margin-bottom: 6rem;
  }
}
section.eightStars-container .character-wrapper .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -2.5rem;
}
@media (max-width: 768px) {
  section.eightStars-container .character-wrapper .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
  }
}
section.eightStars-container .character-wrapper .flex .item {
  width: calc(100% / 2);
  padding: 0 2.5rem;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  section.eightStars-container .character-wrapper .flex .item {
    width: 100%;
    margin-bottom: 3rem;
    padding: 0;
  }
}
section.eightStars-container .character-wrapper .flex .item:nth-of-type(n + 3) {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  section.eightStars-container
    .character-wrapper
    .flex
    .item:nth-of-type(n + 3) {
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  section.eightStars-container .character-wrapper .flex .item:last-of-type {
    margin-bottom: 0;
  }
}
section.eightStars-container .character-wrapper .flex .item .trimming {
  overflow: hidden;
  position: relative;
  padding-top: 66.987%;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  section.eightStars-container .character-wrapper .flex .item .trimming {
    margin-bottom: 2rem;
  }
}
section.eightStars-container .character-wrapper .flex .item .trimming::before {
  content: "";
  display: block;
}
section.eightStars-container .character-wrapper .flex .item .trimming img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}
section.eightStars-container .character-wrapper .flex .item p {
  text-align: left;
}
section.eightStars-container .character-wrapper .flex .item p .blue {
  color: #0050aa;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
  display: block;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  section.eightStars-container .character-wrapper .flex .item p .blue {
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
  }
}
section.eightStars-container .character-wrapper .point-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  section.eightStars-container .character-wrapper .point-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
section.eightStars-container .character-wrapper .point-flex .img-block {
  width: 37.5%;
}
@media (max-width: 768px) {
  section.eightStars-container .character-wrapper .point-flex .img-block {
    width: 100%;
    margin-bottom: 3.5rem;
  }
}
section.eightStars-container
  .character-wrapper
  .point-flex
  .img-block
  .trimming {
  overflow: hidden;
  position: relative;
  padding-top: 75.151%;
}
section.eightStars-container
  .character-wrapper
  .point-flex
  .img-block
  .trimming::before {
  content: "";
  display: block;
}
section.eightStars-container
  .character-wrapper
  .point-flex
  .img-block
  .trimming
  img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}
section.eightStars-container .character-wrapper .point-flex .textarea {
  width: 62.5%;
  padding-left: 5%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  section.eightStars-container .character-wrapper .point-flex .textarea {
    width: 100%;
    padding-left: 0;
  }
}
section.eightStars-container .spots-wrapper {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
section.eightStars-container .spots-wrapper .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -1.5rem 7rem;
}
@media (max-width: 768px) {
  section.eightStars-container .spots-wrapper .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
  }
}
section.eightStars-container .spots-wrapper .item {
  width: calc(100% / 3);
  padding: 0 1.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  section.eightStars-container .spots-wrapper .item {
    width: 100%;
    margin-bottom: 3rem;
    padding: 0;
  }
}
section.eightStars-container .spots-wrapper .item .trimming {
  overflow: hidden;
  position: relative;
  padding-top: 66.911%;
  margin-bottom: 2rem;
}
section.eightStars-container .spots-wrapper .item .trimming::before {
  content: "";
  display: block;
}
section.eightStars-container .spots-wrapper .item .trimming img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}
section.eightStars-container .spots-wrapper .item p {
  text-align: left;
}
section.eightStars-container .spots-wrapper .item p .blue {
  color: #0050aa;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
  display: block;
}
@media (max-width: 768px) {
  section.eightStars-container .spots-wrapper .item p .blue {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
  }
}
section.eightStars-container .spots-wrapper .btn-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 768px) {
  section.eightStars-container .spots-wrapper .btn-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
section.eightStars-container .spots-wrapper .btn-block a {
  margin: 0 1rem;
  background-image: url("../images/copy_icon.png");
}
@media (max-width: 768px) {
  section.eightStars-container .spots-wrapper .btn-block a {
    margin: 0 auto;
  }
}
section.eightStars-container .spots-wrapper .btn-block a:hover {
  background-image: url("../images/copy_icon_blue.png");
}
@media (max-width: 768px) {
  section.eightStars-container .spots-wrapper .btn-block a:first-of-type {
    margin-bottom: 2rem;
  }
}
section.eightStars-container .contact-wrapper {
  padding: 12rem 1.5rem 5rem;
}
@media (max-width: 768px) {
  section.eightStars-container .contact-wrapper {
    padding: 6rem 1.5rem 0;
  }
}
section.eightStars-container .contact-wrapper h3 {
  color: #fff;
  font-size: 7rem;
}
@media (max-width: 768px) {
  section.eightStars-container .contact-wrapper h3 {
    font-size: 3rem;
  }
}
section.eightStars-container .contact-wrapper .textarea p {
  text-align: center !important;
  line-height: 2 !important;
  margin: 0 auto 2rem !important;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  section.eightStars-container .contact-wrapper .textarea p {
    font-size: 1.4rem;
    line-height: 1.8 !important;
  }
}
section.eightStars-container .contact-wrapper .textarea p:last-of-type {
  margin-bottom: 0 !important;
}
section.eightStars-container .pr-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
section.eightStars-container .pr-wrapper .ttl-block {
  margin: 0 auto 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  section.eightStars-container .pr-wrapper .ttl-block {
    margin-bottom: 3rem;
  }
}
section.eightStars-container .pr-wrapper .ttl-block h2 {
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
  font-size: 4rem;
  letter-spacing: 0.3rem;
  line-height: 1;
}
@media (max-width: 768px) {
  section.eightStars-container .pr-wrapper .ttl-block h2 {
    font-size: 2rem;
    letter-spacing: 0.2rem;
  }
}
section.eightStars-container .pr-wrapper .ttl-block h2 span {
  margin-top: 2rem;
  font-size: 1.8rem;
  font-weight: bold;
  margin-left: 2rem;
}
@media (max-width: 768px) {
  section.eightStars-container .pr-wrapper .ttl-block h2 span {
    font-size: 1.4rem;
  }
}
section.eightStars-container .pr-wrapper a.more {
  color: #0050aa;
  font-weight: bold;
  line-height: 40px;
}
@media (max-width: 768px) {
  section.eightStars-container .pr-wrapper a.more {
    text-align: right;
    line-height: 36px;
  }
}
section.eightStars-container .pr-wrapper a.more img {
  margin-left: 1rem;
  width: 50px;
}
section.eightStars-container .pr-wrapper .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 -1.5rem;
}
@media (max-width: 768px) {
  section.eightStars-container .pr-wrapper .flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
  }
}
section.eightStars-container .pr-wrapper .flex li {
  width: calc(100% / 3);
  padding: 0 1.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  section.eightStars-container .pr-wrapper .flex li {
    width: calc(100% / 2);
    padding: 0 0.75rem;
    margin-bottom: 2rem;
  }
}
section.eightStars-container .pr-wrapper .flex li img {
  border-radius: 20px 20px 0 0;
}
@media (max-width: 768px) {
  section.eightStars-container .pr-wrapper .flex li img {
    border-radius: 15px 15px 0 0;
  }
}
section.eightStars-container .pr-wrapper .flex li .textarea {
  background-color: #fff;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0 0 20px 20px;
  text-align: left;
}
@media (max-width: 768px) {
  section.eightStars-container .pr-wrapper .flex li .textarea {
    padding: 1.5rem 1rem;
    border-radius: 0 0 15px 15px;
  }
}
section.eightStars-container .pr-wrapper .flex li .textarea a {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.7;
}
@media (max-width: 768px) {
  section.eightStars-container .pr-wrapper .flex li .textarea a {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.tamariver-wrapper {
  padding-bottom: 13rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 768px) {
  .tamariver-wrapper {
    padding-top: 6rem;
    padding-bottom: 7rem;
  }
}
.tamariver-wrapper .contents-block {
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .tamariver-wrapper .contents-block {
    padding-bottom: 3rem;
  }
}
.tamariver-wrapper p {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .tamariver-wrapper p {
    text-align: left;
    margin-bottom: 3rem;
  }
}
.tamariver-wrapper p.title {
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
  color: #0050aa;
  font-size: 4rem;
  letter-spacing: 0.3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .tamariver-wrapper p.title {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    line-height: 1;
    margin-bottom: 2rem;
    text-align: center;
  }
}
.tamariver-wrapper p.title span {
  font-size: 3.2rem;
}
@media (max-width: 768px) {
  .tamariver-wrapper p.title span {
    font-size: 1.7rem;
  }
}
.tamariver-wrapper .btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1rem 2rem;
}
@media (max-width: 768px) {
  .tamariver-wrapper .btn-area {
    margin: 0 -0.5rem 1.5rem;
  }
}
.tamariver-wrapper .btn-area div {
  width: calc(100% / 4);
  padding: 0 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .tamariver-wrapper .btn-area div {
    width: calc(100% / 2);
    padding: 0 0.5rem;
    margin-bottom: 1.5rem;
  }
}
.tamariver-wrapper .btn-area .btn {
  width: 100%;
  display: block;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  border-radius: 100px;
  line-height: 1;
}
.tamariver-wrapper .btn-area .btn.hachioji {
  background-color: #5778e6;
}
.tamariver-wrapper .btn-area .btn.fuchu {
  background-color: #2fa5e2;
}
.tamariver-wrapper .btn-area .btn.chofu {
  background-color: #10b7c2;
}
.tamariver-wrapper .btn-area .btn.machida {
  background-color: #59bf60;
}
.tamariver-wrapper .btn-area .btn.hino {
  background-color: #318be7;
}
.tamariver-wrapper .btn-area .btn.komae {
  background-color: #13b1d3;
}
.tamariver-wrapper .btn-area .btn.tama {
  background-color: #1ec091;
}
.tamariver-wrapper .btn-area .btn.inagi {
  background-color: #81c53f;
}
.tamariver-wrapper img {
  max-width: 692px;
  width: 78.636%;
}
@media (max-width: 768px) {
  .tamariver-wrapper img {
    width: 100%;
  }
}

section.system-container .bg {
  background-color: #b4d2ec;
  padding-bottom: 6rem;
  position: relative;
}
@media (max-width: 768px) {
  section.system-container .bg {
    padding-bottom: 4rem;
  }
}
section.system-container .bg:before {
  content: "";
  position: absolute;
  border: 15px solid transparent;
  border-top: 15px solid #b4d2ec;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

section.system-container p.catch {
  text-align: center;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  section.system-container p.catch {
    margin-bottom: 3rem;
    text-align: left;
  }
}

section.system-container .tab-btnarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  cursor: pointer;
}
section.system-container .tab-btnarea .tab {
  width: 23.5%;
  text-align: center;
  background-color: #fff;
  color: #0050aa;
  font-weight: bold;
  padding: 2rem;
  line-height: 1;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  section.system-container .tab-btnarea .tab {
    width: 48%;
    margin-bottom: 1rem;
  }
}
section.system-container .tab-btnarea .tab:hover,
section.system-container .tab-btnarea .tab.active {
  background-color: #0050aa;
  color: #fff;
}

section.system-container .panel-area {
  background-color: #dfecf7;
  padding: 14rem 1.5rem;
}
@media (max-width: 768px) {
  section.system-container .panel-area {
    padding: 5rem 1.5rem 7rem;
  }
}
section.system-container .panel-area .panel {
  display: none;
  text-align: center;
}
section.system-container .panel-area .panel.active {
  display: block;
}
section.system-container .panel-area .panel .link-btnarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  section.system-container .panel-area .panel .link-btnarea {
    margin-bottom: 0;
  }
}
section.system-container .panel-area .panel .link-btnarea li {
  background-color: #fff;
  padding: 2rem;
  text-align: center;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  section.system-container .panel-area .panel .link-btnarea li {
    padding: 1.5rem;
    position: relative;
  }
}
section.system-container .panel-area .panel .link-btnarea li:first-of-type {
  border-radius: 20px 0 0 20px;
  border-right: 1px solid #dfecf7;
}
@media (max-width: 768px) {
  section.system-container .panel-area .panel .link-btnarea li:first-of-type {
    border-radius: 15px 0 0 15px;
  }
}
section.system-container .panel-area .panel .link-btnarea li:last-of-type {
  border-radius: 0 20px 20px 0;
}
@media (max-width: 768px) {
  section.system-container .panel-area .panel .link-btnarea li:last-of-type {
    border-radius: 0 15px 15px 0;
  }
}
section.system-container .panel-area .panel .link-btnarea li a {
  display: block;
  line-height: 24px;
  color: #0050aa;
  font-weight: bold;
}
@media (max-width: 768px) {
  section.system-container .panel-area .panel .link-btnarea li a {
    text-align: left;
  }
}
section.system-container .panel-area .panel .link-btnarea li a img {
  margin-left: 2rem;
  width: 24px;
}
@media (max-width: 768px) {
  section.system-container .panel-area .panel .link-btnarea li a img {
    margin-left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    /* Safari用 */
    transform: translateY(-50%);
    right: 15px;
  }
}
section.system-container .panel-area .panel .link-btnarea.only {
  display: block;
}
section.system-container .panel-area .panel .link-btnarea.only li {
  border-radius: 20px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  section.system-container .panel-area .panel .link-btnarea.only li {
    width: 100%;
  }
}
section.system-container .panel-area .panel .link-btnarea.only li a {
  text-align: center;
}
@media (max-width: 768px) {
  section.system-container .panel-area .panel .link-btnarea.only li img {
    margin-left: 2rem;
    position: static;
    top: auto;
    -webkit-transform: none;
    /* Safari用 */
    transform: none;
    right: auto;
  }
}
section.system-container .panel-area .panel .panel-contents {
  padding-top: 7rem;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  section.system-container .panel-area .panel .panel-contents {
    padding-top: 6rem;
    margin-bottom: 0;
  }
}
section.system-container .panel-area .panel .panel-contents:last-of-type {
  margin-bottom: 12rem;
}
@media (max-width: 768px) {
  section.system-container .panel-area .panel .panel-contents:last-of-type {
    margin-bottom: 6rem;
  }
}
section.system-container .panel-area .panel .panel-contents p.title {
  font-size: 4rem;
  letter-spacing: 0.3rem;
  font-weight: bold;
  color: #0050aa;
  margin-bottom: 5rem;
  text-align: center;
}
@media (max-width: 768px) {
  section.system-container .panel-area .panel .panel-contents p.title {
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.2rem;
    margin-bottom: 3rem;
  }
}
section.system-container .panel-area .panel .panel-contents .table-wrapper {
  overflow-x: auto;
  width: 1000px;
  border-radius: 20px;
}
@media (max-width: 834px) {
  section.system-container .panel-area .panel .panel-contents .table-wrapper {
    width: 100%;
  }
}
@media (max-width: 768px) {
  section.system-container .panel-area .panel .panel-contents .table-wrapper {
    border-radius: 15px;
  }
}
section.system-container
  .panel-area
  .panel
  .panel-contents
  .table-wrapper
  table {
  border-collapse: separate;
  width: 100%;
  table-layout: fixed;
}
section.system-container
  .panel-area
  .panel
  .panel-contents
  .table-wrapper
  table.over3
  th {
  width: 160px;
}
@media (max-width: 768px) {
  section.system-container
    .panel-area
    .panel
    .panel-contents
    .table-wrapper
    table.over3
    th {
    width: 88px;
  }
}
section.system-container
  .panel-area
  .panel
  .panel-contents
  .table-wrapper
  table.over3
  td {
  width: 320px;
}
@media (max-width: 768px) {
  section.system-container
    .panel-area
    .panel
    .panel-contents
    .table-wrapper
    table.over3
    td {
    width: 255px;
  }
}
section.system-container
  .panel-area
  .panel
  .panel-contents
  .table-wrapper
  table
  tr:last-of-type
  th,
section.system-container
  .panel-area
  .panel
  .panel-contents
  .table-wrapper
  table
  tr:last-of-type
  td {
  border-bottom: none;
}
section.system-container
  .panel-area
  .panel
  .panel-contents
  .table-wrapper
  table
  tr.link-middle
  td {
  vertical-align: middle;
}
section.system-container
  .panel-area
  .panel
  .panel-contents
  .table-wrapper
  table
  th {
  background-color: #b4d2ec;
  color: #0050aa;
  padding: 2rem 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  width: 16%;
  max-width: 160px;
  position: sticky;
  top: 0;
  left: 0;
  vertical-align: middle;
  border-bottom: 1px solid #dfecf7;
  border-right: 1px solid #dfecf7;
}
@media (max-width: 768px) {
  section.system-container
    .panel-area
    .panel
    .panel-contents
    .table-wrapper
    table
    th {
    width: 88px;
    max-width: none;
    padding: 1.5rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.5;
  }
}
section.system-container
  .panel-area
  .panel
  .panel-contents
  .table-wrapper
  table
  th.name {
  background-color: #0050aa;
}
section.system-container
  .panel-area
  .panel
  .panel-contents
  .table-wrapper
  table
  td {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 500;
  word-break: break-all;
  background-color: #fff;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.5;
  text-align: left;
  border-right: 1px solid #dfecf7;
  border-bottom: 1px solid #dfecf7;
}
@media (max-width: 768px) {
  section.system-container
    .panel-area
    .panel
    .panel-contents
    .table-wrapper
    table
    td {
    padding: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
    width: 255px;
  }
}
section.system-container
  .panel-area
  .panel
  .panel-contents
  .table-wrapper
  table
  td:last-of-type {
  border-right: none;
}
section.system-container
  .panel-area
  .panel
  .panel-contents
  .table-wrapper
  table
  td.name {
  background-color: #0050aa;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  section.system-container
    .panel-area
    .panel
    .panel-contents
    .table-wrapper
    table
    td.name {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
section.system-container
  .panel-area
  .panel
  .panel-contents
  .table-wrapper
  table
  td
  div {
  margin-bottom: 2.5rem;
}
section.system-container
  .panel-area
  .panel
  .panel-contents
  .table-wrapper
  table
  td
  div:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  section.system-container
    .panel-area
    .panel
    .panel-contents
    .table-wrapper
    table
    td
    div {
    margin-bottom: 1.5rem;
  }
}
section.system-container
  .panel-area
  .panel
  .panel-contents
  .table-wrapper
  table
  td
  div
  p.blue {
  color: #0050aa;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 1rem;
}
section.system-container
  .panel-area
  .panel
  .panel-contents
  .table-wrapper
  table
  td
  div
  ol {
  list-style-type: decimal;
  list-style-position: inside;
}
section.system-container
  .panel-area
  .panel
  .panel-contents
  .table-wrapper
  table
  td
  div
  ol
  li {
  text-indent: -1.5rem;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
section.system-container
  .panel-area
  .panel
  .panel-contents
  .table-wrapper
  table
  td
  div
  ul
  li {
  margin-bottom: 0.5rem;
}
section.system-container
  .panel-area
  .panel
  .panel-contents
  .table-wrapper
  table
  td
  a {
  color: #0050aa;
  text-decoration: underline;
  display: inline-block;
}
section.system-container
  .panel-area
  .panel
  .panel-contents
  .table-wrapper
  table
  td
  a.file {
  background-image: url("../images/pdf_icon.png");
  background-repeat: no-repeat;
  background-position: left 0 top 50%;
  background-size: 16.5px;
  padding-left: 2.5rem;
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  overflow-y: scroll;
}
.modal .modal-bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal .nonScroll {
  height: calc(100vh + 1px);
  width: 1px;
  background-color: transparent;
}
.modal .close-btn {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 100px;
  background-color: #fff;
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media (max-width: 768px) {
  .modal .close-btn {
    width: 36px;
    height: 36px;
    bottom: -60px;
  }
}
.modal .close-btn .batsu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}
@media (max-width: 768px) {
  .modal .close-btn .batsu-wrapper {
    width: 36px;
    height: 36px;
  }
}
.modal .close-btn .batsu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 20px;
  height: 20px;
}
.modal .close-btn .batsu::before,
.modal .close-btn .batsu::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 20px;
  /* 棒の高さ */
  background: #0050aa;
}
.modal .close-btn .batsu::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal .close-btn .batsu::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal .modal-content {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 800px;
  margin-top: -5rem;
}
@media (max-width: 768px) {
  .modal .modal-content {
    padding: 0 1.5rem;
    margin-top: -2rem;
    width: 100%;
  }
}
.modal .modal-content .message-block {
  background-color: #fff;
  border-radius: 20px;
  padding: 8rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-y: scroll;
  height: 80vh;
}
@media (max-width: 768px) {
  .modal .modal-content .message-block {
    padding: 4rem 2rem;
  }
}
.modal .modal-content .message-block img {
  display: block;
  margin: 0 auto 5rem;
  max-width: 260px;
  width: 100%;
}
@media (max-width: 768px) {
  .modal .modal-content .message-block img {
    max-width: 195px;
    margin-bottom: 3rem;
  }
}
.modal .modal-content .message-block p {
  line-height: 500;
  line-height: 2.5;
}
@media (max-width: 768px) {
  .modal .modal-content .message-block p {
    line-height: 2;
  }
}
.modal .modal-content .message-block p span {
  display: block;
  font-weight: bold;
  text-align: right;
  margin-top: 1rem;
}
.modal .modal-content img.thumb {
  width: 100%;
}
.modal .modal-content .youtube-block {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.modal .modal-content .youtube-block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-video {
  background: rgba(0, 0, 0, 0.8);
}

.modal-video-close-btn {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 100px;
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  margin-top: 5rem;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .modal-video-close-btn {
    width: 36px;
    height: 36px;
    bottom: -60px;
  }
}
.modal-video-close-btn::before,
.modal-video-close-btn::after {
  background-color: #0050aa;
  width: 20px;
  height: 1px;
  margin-left: -10px;
  margin-top: 0;
  left: 50%;
}
.modal-video-close-btn:hover {
  opacity: 0.5;
}

section.policy-container h2 {
  text-align: center;
  color: #0050aa;
  font-size: 4.8rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 11rem;
  letter-spacing: 0.3rem;
}
@media (max-width: 768px) {
  section.policy-container h2 {
    font-size: 2rem;
    margin-bottom: 4rem;
  }
}

section.policy-container .max1000 {
  background-color: #fff;
  padding: 7.5rem 2rem 5.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 20px;
}
@media (max-width: 768px) {
  section.policy-container .max1000 {
    padding: 4rem 1.5rem 2rem;
  }
}

section.policy-container .textblock {
  max-width: 800px;
  margin: 0 auto;
}
section.policy-container .textblock strong {
  font-weight: bold;
}
section.policy-container .textblock .inner-block {
  margin-bottom: 6rem;
  font-size: 1.4rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  section.policy-container .textblock .inner-block {
    margin-bottom: 3rem;
    font-size: 1.3rem;
  }
}
section.policy-container .textblock .inner-block:last-of-type {
  margin-bottom: 0;
}
section.policy-container .textblock h3 {
  font-size: 2.8rem;
  font-weight: bold;
  color: #0050aa;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  section.policy-container .textblock h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
section.policy-container .textblock h4 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  section.policy-container .textblock h4 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}
section.policy-container .textblock p {
  line-height: 2;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  section.policy-container .textblock p {
    line-height: 1.8;
  }
}
section.policy-container .textblock ol {
  list-style: decimal;
  list-style-position: inside;
  margin-bottom: 3rem;
}
section.policy-container .textblock ol li {
  text-indent: -1.6rem;
  padding-left: 1.6rem;
  line-height: 1.8;
}
section.policy-container .textblock ol ul {
  list-style: circle;
  list-style-position: inside;
  padding-left: 0.5rem;
}
section.policy-container .textblock ol.number02 li {
  list-style-type: none;
  counter-increment: cnt;
  text-indent: -3.6rem;
  padding-left: 3.6rem;
}
section.policy-container .textblock ol.number02 li:nth-of-type(n + 10) {
  text-indent: -4.3rem;
  padding-left: 4.3rem;
}
section.policy-container .textblock ol.number02 li::before {
  content: "（" counter(cnt) "）";
}
section.policy-container .textblock ul {
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 3rem;
}
section.policy-container .textblock ul li {
  text-indent: -1.7rem;
  padding-left: 1.7rem;
  line-height: 1.8;
}
section.policy-container .textblock ul ul {
  list-style: circle;
  list-style-position: inside;
  padding-left: 0.5rem;
}
section.policy-container .textblock a {
  color: #0050aa;
  text-decoration: underline;
}

section.contact-container .catch {
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  section.contact-container .catch {
    margin-bottom: 5rem;
  }
}
section.contact-container .catch p {
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  section.contact-container .catch p {
    text-align: left;
    line-height: 2;
  }
}
section.contact-container .catch .gray-cmt {
  margin-bottom: 0;
}

section.contact-container .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -2.5rem;
}
@media (max-width: 768px) {
  section.contact-container .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
  }
}
section.contact-container .flex .item {
  width: calc(100% / 2);
  padding: 0 2.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  section.contact-container .flex .item {
    width: 100%;
    margin-bottom: 2rem;
    padding: 0;
  }
}
section.contact-container .flex .item:nth-of-type(7),
section.contact-container .flex .item:nth-of-type(8) {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  section.contact-container .flex .item:nth-of-type(7) {
    margin-bottom: 2rem;
  }
}
section.contact-container .flex .item .bg-white {
  background-color: #fff;
  border-radius: 20px;
  padding: 3rem;
}
@media (max-width: 768px) {
  section.contact-container .flex .item .bg-white {
    padding: 3rem 2rem;
  }
}
section.contact-container .flex .item .bg-white p.city {
  color: #0050aa;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 32px;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  section.contact-container .flex .item .bg-white p.city {
    font-size: 1.7rem;
    line-height: 24px;
  }
}
section.contact-container .flex .item .bg-white p.city img {
  margin-right: 1rem;
}
@media (max-width: 768px) {
  section.contact-container .flex .item .bg-white p.city img {
    width: 24px;
  }
}
section.contact-container .flex .item .bg-white p.name {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  section.contact-container .flex .item .bg-white p.name {
    font-size: 1.6rem;
  }
}
section.contact-container .flex .item .bg-white p.address {
  line-height: 1.8;
  margin-bottom: 1rem;
}
section.contact-container .flex .item .bg-white p.tel,
section.contact-container .flex .item .bg-white p.mail {
  line-height: 20px;
  margin-bottom: 1rem;
}
section.contact-container .flex .item .bg-white p.tel img,
section.contact-container .flex .item .bg-white p.mail img {
  margin-right: 0.5rem;
  width: 22px;
}
section.contact-container .flex .item .bg-white p.tel span.sml,
section.contact-container .flex .item .bg-white p.mail span.sml {
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  section.contact-container .flex .item .bg-white p.tel span.sml,
  section.contact-container .flex .item .bg-white p.mail span.sml {
    font-size: 1.2rem;
  }
}
section.contact-container .flex .item .bg-white p.tel a,
section.contact-container .flex .item .bg-white p.mail a {
  color: #0050aa;
  text-decoration: underline;
}
section.contact-container .flex .item .bg-white p.tel a.file,
section.contact-container .flex .item .bg-white p.mail a.file {
  background-image: url("../images/copy_icon_blue.png");
  background-repeat: no-repeat;
  background-position: right 0 top 50%;
  padding-right: 3rem;
  background-size: 30px;
}
@media (max-width: 768px) {
  section.contact-container .flex .item .bg-white p.tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  section.contact-container .flex .item .bg-white p.tel a {
    color: #000;
  }
}
section.contact-container .flex .item .bg-white p.mail {
  margin-bottom: 0;
}

section.apply-container .explain-wrapper {
  background-color: #fff;
  border-radius: 20px;
  padding: 6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 1000px;
  margin: 0 auto 10rem;
}
@media (max-width: 768px) {
  section.apply-container .explain-wrapper {
    padding: 4rem 3rem;
    margin-bottom: 6rem;
  }
}
section.apply-container .explain-wrapper span.red {
  color: #b62727;
}

section.apply-container .step-wrapper {
  background-color: #fff;
  max-width: 800px;
  margin: 0 auto 6rem;
  padding: 5rem 6rem 4rem;
  border-radius: 20px;
}
@media (max-width: 768px) {
  section.apply-container .step-wrapper {
    padding: 3rem 1rem;
    margin-bottom: 4rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  section.apply-container .step-wrapper img {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
}
section.apply-container .step-wrapper p {
  text-align: center;
  border-top: 1px solid #e5e5e5;
  padding-top: 3rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  section.apply-container .step-wrapper p {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
}

section.apply-container .search-wrapper {
  margin-bottom: 3rem;
}

section.apply-container p.read {
  color: #0050aa;
  font-weight: 700;
  font-size: 3.2rem;
  letter-spacing: 0.3rem;
  line-height: 1;
  max-width: 1000px;
  margin: 0 auto 3rem;
}
@media (max-width: 768px) {
  section.apply-container p.read {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
}

section.apply-container .form-block {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  section.apply-container .form-block {
    margin-bottom: 2rem;
  }
}
section.apply-container .form-block .title {
  margin-bottom: 4rem !important;
}
@media (max-width: 768px) {
  section.apply-container .form-block .title {
    margin-bottom: 3rem !important;
  }
}
section.apply-container .form-block .title span.must {
  color: #fff;
  font-size: 1.2rem;
  margin-left: 1rem;
  background-color: #b62727;
  padding: 0.3rem 1rem;
  line-height: 1;
  border-radius: 10px;
}

section.apply-container .flex-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  section.apply-container .flex-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
section.apply-container .flex-block .item {
  width: 47%;
}
@media (max-width: 768px) {
  section.apply-container .flex-block .item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  section.apply-container .flex-block .flex {
    margin-bottom: 1rem;
  }
}

section.apply-container .item {
  margin-bottom: 3rem;
}
section.apply-container .item label,
section.apply-container .item p.item-title {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: #0050aa;
}
section.apply-container .item input[type="text"],
section.apply-container .item input[type="email"],
section.apply-container .item input[type="password"],
section.apply-container .item input[type="tel"] {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background-color: #fff;
  width: 100%;
  padding: 1rem 1.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 1rem;
}
section.apply-container .item .flex-box input[type="text"] {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background-color: #fff;
  width: auto;
  padding: 1rem 1.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
section.apply-container .item textarea {
  width: 100%;
  border: 1px solid #e5e5e5;
  resize: vertical;
  height: 150px;
  padding: 1rem;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
section.apply-container .item .select-wrap {
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  section.apply-container .item .select-wrap {
    margin-bottom: 1rem;
  }
}
section.apply-container .item .select-wrap::after {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 12px solid #0050aa;
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  pointer-events: none;
}
section.apply-container .item select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
section.apply-container .item p.comment {
  font-weight: normal;
  color: #8a8a8a;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  section.apply-container .item p.comment {
    font-size: 1.3rem;
  }
}
section.apply-container .item .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.apply-container .item .flex .select-wrap {
  margin: 0 1rem;
}
section.apply-container .item .flex .select-wrap:first-of-type {
  margin-left: 0;
}
section.apply-container .item .flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 3rem;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
}
@media (max-width: 768px) {
  section.apply-container .item .flex-box {
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
  }
}
section.apply-container .item .flex-box .postalcode-btn {
  color: #0050aa;
  border-radius: 5px;
  padding: 1rem 4rem;
  line-height: 1;
  font-size: 1.4rem;
  background-color: #dfecf7;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  font-weight: normal;
  white-space: nowrap;
}
@media (max-width: 768px) {
  section.apply-container .item .flex-box .postalcode-btn {
    padding: 1rem 2rem;
  }
}
section.apply-container .item .flex-box .postalcode-btn:hover {
  background-color: #c5dff1;
  transition: background-color 0.3s ease;
}

section.apply-container .title,
section.apply-container .select-title {
  background-color: #dfecf7;
  padding: 1.5rem 2rem;
  cursor: pointer;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  position: relative;
  line-height: 1;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0050aa;
  margin-bottom: 2rem;
}

section.apply-container span.must {
  color: #fff;
  font-size: 1.2rem;
  margin-left: 1rem;
  background-color: #b62727;
  padding: 0.3rem 1rem;
  line-height: 1;
  border-radius: 10px;
}

section.apply-container span.cmt {
  font-size: 1.4rem;
  color: #000;
  font-weight: normal;
  margin-left: 2rem;
}
@media (max-width: 768px) {
  section.apply-container span.cmt {
    margin-left: 0;
    display: block;
    margin-top: 1.5rem;
  }
}

section.apply-container p.attn {
  font-weight: normal;
  color: #b62727;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  section.apply-container p.attn {
    font-size: 1.3rem;
  }
}

section.apply-container .tech-block.confirm {
  margin-bottom: 4rem;
}

section.apply-container .facility-block {
  border-bottom: none !important;
  margin-bottom: 1rem !important;
  padding-bottom: 0 !important;
}

section.apply-container .check-box .inner {
  display: block;
}

section.apply-container .radio-box .inner {
  margin-bottom: 2rem;
}
section.apply-container .radio-box .inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
section.apply-container .radio-box .inner ul li {
  width: calc(100% / 3);
  margin-bottom: 1.5rem;
  position: relative;
  letter-spacing: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  section.apply-container .radio-box .inner ul li {
    width: 100%;
  }
}
section.apply-container .radio-box .inner ul li label {
  cursor: pointer;
  line-height: 1.5;
  text-indent: -4.2rem;
  padding-left: 4.2rem;
}
section.apply-container .radio-box .inner ul li input[type="radio"] {
  position: absolute;
  opacity: 0;
}
section.apply-container
  .radio-box
  .inner
  ul
  li
  input[type="radio"]
  + .radio-label:before {
  content: "";
  background: #fff;
  border-radius: 100%;
  border: 1px solid #a5a5a5;
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
  margin-right: 1.5rem;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}
@media (max-width: 768px) {
  section.apply-container
    .radio-box
    .inner
    ul
    li
    input[type="radio"]
    + .radio-label:before {
    width: 21px;
    height: 21px;
    margin-right: 1rem;
  }
}
section.apply-container
  .radio-box
  .inner
  ul
  li
  input[type="radio"]:checked
  + .radio-label:before {
  background-color: #0050aa;
  -webkit-box-shadow: inset 0 0 0 4px #fff;
  box-shadow: inset 0 0 0 4px #fff;
}
section.apply-container
  .radio-box
  .inner
  ul
  li
  input[type="radio"]
  + .radio-label:empty:before {
  margin-right: 0;
}

section.apply-container .position {
  position: relative;
}
section.apply-container .position.checkbox-box label {
  padding-left: 3rem;
  color: #000;
  font-weight: normal;
  font-size: 1.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  width: 100%;
}
@media (max-width: 768px) {
  section.apply-container .position.checkbox-box label {
    font-size: 1.4rem;
  }
}
section.apply-container .position.checkbox-box label::before {
  margin-top: 7px;
}
@media (max-width: 768px) {
  section.apply-container .position.checkbox-box label::before {
    margin-top: 3px;
  }
}
@media (max-width: 768px) {
  section.apply-container .position.checkbox-box label::after {
    margin-top: -6px;
  }
}
section.apply-container
  .position.checkbox-box
  label:has(input[type="checkbox"]:checked)::after {
  opacity: 1;
}

section.apply-container input[type="file"] {
  display: none;
}

section.apply-container .file-label {
  display: block;
  font-size: 1.5rem !important;
  text-align: center;
  padding: 1.5rem 0.5rem;
  color: #fff !important;
  background-color: #0050aa;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  max-width: 240px;
  font-weight: normal !important;
}
@media (max-width: 768px) {
  section.apply-container .file-label {
    padding: 1rem 0.5rem;
    font-size: 1.4rem !important;
    max-width: 190px;
  }
}
section.apply-container .file-label .icon {
  font-size: 2rem;
  margin-left: 1rem;
}

section.apply-container .file-label:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  section.apply-container .pledge-block {
    margin-bottom: 3rem;
  }
}

section.apply-container .pledge-block .inner {
  text-indent: 0;
}

section.apply-container .pledge-block ul {
  display: block !important;
}
section.apply-container .pledge-block ul li {
  width: 100% !important;
}
section.apply-container .pledge-block ul li label {
  font-weight: normal !important;
  text-indent: 0;
  padding-left: 0 !important;
  font-size: 1.4rem !important;
  position: relative;
}
section.apply-container .pledge-block ul li.checkbox-box label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  section.apply-container .pledge-block ul li.checkbox-box label {
    display: block;
    text-indent: -3rem;
    padding-left: 3rem !important;
  }
}
section.apply-container .pledge-block ul li.checkbox-box label::before {
  content: none;
}
section.apply-container .pledge-block ul li.checkbox-box label::after {
  content: none;
}
section.apply-container
  .pledge-block
  ul
  li.checkbox-box
  input[type="checkbox"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-left: 3rem;
  color: #000;
  font-weight: normal;
  font-size: 1.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
}
section.apply-container
  .pledge-block
  ul
  li.checkbox-box
  input[type="checkbox"]::before {
  border: 1px solid #cccccc;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
}
section.apply-container
  .pledge-block
  ul
  li.checkbox-box
  input[type="checkbox"]::after {
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  left: 7px;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
section.apply-container
  .pledge-block
  ul
  li.checkbox-box
  input[type="checkbox"]:checked::after {
  opacity: 1;
}

section.apply-container .tabs {
  max-width: 1000px;
  margin: 0 auto;
}
section.apply-container .tabs .tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 3px solid #0050aa;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 5rem;
  -moz-column-gap: 5rem;
  column-gap: 5rem;
  margin-bottom: 9rem;
}
@media (max-width: 768px) {
  section.apply-container .tabs .tab-list {
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
    margin-bottom: 7rem;
  }
}
section.apply-container .tabs .tab-list .tab-item {
  border-radius: 5px 5px 0 0;
  background-color: #fff;
  color: #0050aa;
  padding: 2rem 6rem;
  cursor: pointer;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
  max-width: 380px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 768px) {
  section.apply-container .tabs .tab-list .tab-item {
    font-size: 1.6rem;
    padding: 1.5rem 3rem;
    line-height: 1.5;
  }
}
section.apply-container .tabs .tab-list .tab-item.active {
  background-color: #0050aa;
  color: #fff;
}

section.apply-container .tab-panel {
  display: none;
}
section.apply-container .tab-panel.active {
  display: block;
}

section.apply-container .url-wrapper {
  margin-top: -4rem;
  margin-bottom: 5rem;
}
section.apply-container .url-wrapper .item {
  margin-bottom: 5rem;
}
section.apply-container .url-wrapper .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 768px) {
  section.apply-container .url-wrapper .btn-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
section.apply-container .url-wrapper .btn-box .btns {
  max-width: 315px;
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1rem;
  padding: 2rem;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  border-radius: 50px;
  border: none;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  section.apply-container .url-wrapper .btn-box .btns {
    max-width: 245px;
    padding: 1.5rem;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
  }
}
section.apply-container .url-wrapper .btn-box .btns.submit {
  background-color: #0050aa;
  border: 1px solid #0050aa;
}
section.apply-container .url-wrapper .btn-box .btns.submit:hover {
  background-color: #fff;
  color: #0050aa;
}
section.apply-container .url-wrapper .btn-box .btns.reset {
  background-color: #a2a2a2;
}
section.apply-container .url-wrapper .btn-box .btns.reset:hover {
  opacity: 0.8;
}

section.apply-container .check-box.center {
  margin-top: 7rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  section.apply-container .check-box.center {
    margin-bottom: 3rem;
  }
}
section.apply-container .check-box.center .checkbox-box {
  width: 100% !important;
}
section.apply-container .check-box.center .checkbox-box label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: normal !important;
  text-indent: 0;
  padding-left: 0 !important;
  font-size: 1.4rem !important;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
}
section.apply-container .check-box.center .checkbox-box.checkbox-box label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.apply-container
  .check-box.center
  .checkbox-box.checkbox-box
  label::before {
  content: none;
}
section.apply-container
  .check-box.center
  .checkbox-box.checkbox-box
  label::after {
  content: none;
}
section.apply-container
  .check-box.center
  .checkbox-box.checkbox-box
  input[type="checkbox"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #000;
  font-weight: normal;
  font-size: 1.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
}
section.apply-container
  .check-box.center
  .checkbox-box.checkbox-box
  input[type="checkbox"]::before {
  border: 1px solid #cccccc;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  section.apply-container
    .check-box.center
    .checkbox-box.checkbox-box
    input[type="checkbox"]::before {
    top: -1px;
  }
}
section.apply-container
  .check-box.center
  .checkbox-box.checkbox-box
  input[type="checkbox"]::after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  opacity: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 2px;
  left: 6px;
}
@media (max-width: 768px) {
  section.apply-container
    .check-box.center
    .checkbox-box.checkbox-box
    input[type="checkbox"]::after {
    top: 1px;
  }
}
section.apply-container
  .check-box.center
  .checkbox-box.checkbox-box
  input[type="checkbox"]:checked::before {
  background-color: #0050aa;
}
section.apply-container
  .check-box.center
  .checkbox-box.checkbox-box
  input[type="checkbox"]:checked::after {
  opacity: 1;
}

.torikumi-container .bg-blue {
  padding-top: 12rem;
}
@media (max-width: 768px) {
  .torikumi-container .bg-blue {
    padding-top: 0;
  }
}

.torikumi-container .link-btnarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin: 0 auto 5rem;
  max-width: 1000px;
}
@media (max-width: 834px) {
  .torikumi-container .link-btnarea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
  }
}
.torikumi-container .link-btnarea li {
  background-color: #fff;
  padding: 2rem;
  text-align: center;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 834px) {
  .torikumi-container .link-btnarea li {
    width: 70%;
    max-width: 550px;
  }
}
@media (max-width: 768px) {
  .torikumi-container .link-btnarea li {
    width: 100%;
    padding: 1.5rem 2rem;
  }
}
.torikumi-container .link-btnarea li:first-of-type {
  border-radius: 20px 0 0 20px;
  border-right: 1px solid #dfecf7;
}
@media (max-width: 834px) {
  .torikumi-container .link-btnarea li:first-of-type {
    border-radius: 20px 20px 0 0;
    border-right: none;
    border-bottom: 1px solid #dfecf7;
  }
}
@media (max-width: 768px) {
  .torikumi-container .link-btnarea li:first-of-type {
    border-radius: 15px 15px 0 0;
  }
}
.torikumi-container .link-btnarea li:last-of-type {
  border-radius: 0 20px 20px 0;
}
@media (max-width: 834px) {
  .torikumi-container .link-btnarea li:last-of-type {
    border-radius: 0 0 20px 20px;
  }
}
@media (max-width: 768px) {
  .torikumi-container .link-btnarea li:last-of-type {
    border-radius: 0 0 15px 15px;
  }
}
.torikumi-container .link-btnarea li a {
  display: block;
  line-height: 24px;
  color: #0050aa;
  font-weight: bold;
}
@media (max-width: 768px) {
  .torikumi-container .link-btnarea li a {
    text-align: left;
    line-height: 1.5;
  }
}
.torikumi-container .link-btnarea li a img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  right: 30px;
  width: 24px;
}
@media (max-width: 834px) {
  .torikumi-container .link-btnarea li a img {
    right: 20px;
  }
}

.torikumi-container .textarea p.mb-30 {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .torikumi-container .textarea p.mb-30 {
    margin-bottom: 2rem;
  }
}

.torikumi-container .textarea p.mb-60 {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .torikumi-container .textarea p.mb-60 {
    margin-bottom: 4rem;
  }
}

.torikumi-container .textarea p.blue-ttl {
  line-height: 1.7;
}

.torikumi-container .textarea p.blue-ttl.left {
  margin-top: 8rem;
  text-indent: -3.8rem;
  padding-left: 3.8rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .torikumi-container .textarea p.blue-ttl.left {
    margin-top: 4rem;
    text-indent: -3.3rem;
    padding-left: 3.3rem;
  }
}

.torikumi-container .blue-bg {
  max-width: 800px;
  margin: 0 auto;
  background-color: #f2f7fb;
}
.torikumi-container .blue-bg.mb-60 {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .torikumi-container .blue-bg.mb-60 {
    margin-bottom: 3rem;
  }
}
.torikumi-container .blue-bg p.bold {
  font-weight: bold;
  margin-bottom: 0 !important;
}
.torikumi-container .blue-bg ul {
  color: #000 !important;
}
.torikumi-container .blue-bg ul.black {
  list-style: none !important;
  margin-left: 2rem;
  margin-top: -1rem;
}
@media (max-width: 768px) {
  .torikumi-container .blue-bg ul.black {
    margin-left: 0;
  }
}
.torikumi-container .blue-bg ul.black a {
  color: #0050aa;
}
.torikumi-container .blue-bg ul.black a img {
  width: 30px;
}
.torikumi-container .blue-bg ul.links li {
  text-indent: 0 !important;
  padding-left: 0 !important;
}
@media (max-width: 768px) {
  .torikumi-container .blue-bg ul.links li a {
    display: block;
  }
}

.torikumi-container p.cmt {
  font-size: 1.2rem;
  line-height: 1.7 !important;
  color: #777;
  margin-top: 1rem !important;
}
.torikumi-container p.cmt.right {
  text-align: right;
}
@media (max-width: 768px) {
  .torikumi-container p.cmt.right {
    text-align: left;
  }
}
.torikumi-container p.cmt.indent {
  text-indent: -1.2rem;
  padding-left: 1.2rem;
}

.torikumi-container .img-flex-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto 3rem;
}
@media (max-width: 768px) {
  .torikumi-container .img-flex-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 1rem;
  }
}
.torikumi-container .img-flex-block:nth-of-type(2) {
  margin-bottom: 0;
}
.torikumi-container .img-flex-block p.cmt {
  text-align: center;
}
.torikumi-container .img-flex-block.mb-60 {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .torikumi-container .img-flex-block.mb-60 {
    margin-bottom: 2rem;
  }
}
.torikumi-container .img-flex-block figure {
  width: 46.875%;
}
@media (max-width: 768px) {
  .torikumi-container .img-flex-block figure {
    margin-bottom: 2rem;
    width: 100%;
  }
}
.torikumi-container .img-flex-block div {
  width: 46.875%;
}
@media (max-width: 768px) {
  .torikumi-container .img-flex-block div {
    margin-bottom: 2rem;
    width: 100%;
  }
}
.torikumi-container .img-flex-block div figure {
  width: 100%;
}

.torikumi-container .dli-caret-down {
  display: block;
  color: #0050aa;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 2rem 1.2rem;
  border-top-color: currentColor;
  border-bottom: 0;
  margin: 3rem auto;
}
@media (max-width: 768px) {
  .torikumi-container .dli-caret-down {
    margin: 2rem auto;
    border-width: 1.5rem 0.9rem;
  }
}

section.mypage-container {
  margin-top: 11rem;
}
@media (max-width: 768px) {
  section.mypage-container {
    margin-top: 6rem;
  }
}
section.mypage-container .bg-blue {
  background-color: #dfecf7;
  padding: 6rem 2rem;
}
section.mypage-container .bg-blue .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  section.mypage-container .bg-blue .inner {
    display: block;
  }
}
@media (max-width: 768px) {
  section.mypage-container .bg-blue .inner .name-block {
    margin-bottom: 3rem;
  }
}
section.mypage-container .bg-blue .inner .name-block p.status {
  background-color: #0050aa;
  color: #fff;
  line-height: 1;
  padding: 0.3rem 1rem;
  border-radius: 5px;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  text-align: center;
  display: inline-block;
}
section.mypage-container .bg-blue .inner .name-block p.name {
  font-size: 2.4rem;
  line-height: 1.3;
  color: #0050aa;
  font-weight: bold;
}
@media (max-width: 768px) {
  section.mypage-container .bg-blue .inner .name-block p.name {
    font-size: 2rem;
  }
}
section.mypage-container .bg-blue .inner .btn-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4rem;
  -moz-column-gap: 4rem;
  column-gap: 4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  section.mypage-container .bg-blue .inner .btn-block {
    display: block;
  }
}
section.mypage-container .bg-blue .inner .btn-block .mypage-btn {
  padding: 1.5rem 2.5rem;
  background-color: #0050aa;
  border-radius: 50px;
  color: #fff;
  line-height: 1;
  border: 1px solid #0050aa;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
}
@media (max-width: 768px) {
  section.mypage-container .bg-blue .inner .btn-block .mypage-btn {
    max-width: 305px;
    margin: 0 auto;
    font-size: 1.4rem;
    padding: 1.5rem;
  }
}
section.mypage-container .bg-blue .inner .btn-block .mypage-btn:hover {
  background-color: #fff;
  color: #0050aa;
  opacity: 1;
}
section.mypage-container .bg-blue .inner .btn-block .mypage-btn.transparent {
  background-color: transparent;
  border: 1px solid #0050aa;
  color: #0050aa;
}
@media (max-width: 768px) {
  section.mypage-container .bg-blue .inner .btn-block .mypage-btn.transparent {
    margin-top: 2rem;
  }
}
section.mypage-container
  .bg-blue
  .inner
  .btn-block
  .mypage-btn.transparent:hover {
  background-color: #0050aa;
  color: #fff;
}
section.mypage-container .bg-lightblue {
  background-color: #dfecf7;
}
section.mypage-container .center {
  text-align: center;
}
section.mypage-container a.leave {
  display: block;
  color: #0050aa;
  text-decoration: underline;
  text-align: center;
  margin: 2rem auto;
}
section.mypage-container .dashboard-wrapper {
  padding: 14rem 2rem;
}
@media (max-width: 768px) {
  section.mypage-container .dashboard-wrapper {
    padding: 8rem 2rem;
  }
}
section.mypage-container .dashboard-wrapper .read {
  text-align: center;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  section.mypage-container .dashboard-wrapper .read {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
}
section.mypage-container .dashboard-wrapper .date {
  font-size: 1.6rem;
  text-align: center;
}
@media (max-width: 768px) {
  section.mypage-container .dashboard-wrapper .date {
    font-size: 1.4rem;
  }
}
section.mypage-container .dashboard-wrapper .flex {
  max-width: 1000px;
  margin: 7rem auto 13rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5rem;
  -moz-column-gap: 5rem;
  column-gap: 5rem;
}
@media (max-width: 768px) {
  section.mypage-container .dashboard-wrapper .flex {
    margin: 5rem auto 8rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
}
section.mypage-container .dashboard-wrapper .flex .item {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 1.6rem;
  width: calc((100% - 10rem) / 3);
}
@media (max-width: 768px) {
  section.mypage-container .dashboard-wrapper .flex .item {
    width: calc((100% - 2rem) / 2);
  }
}
@media (max-width: 768px) {
  section.mypage-container .dashboard-wrapper .flex .item:last-of-type {
    margin-top: 2rem;
  }
}
section.mypage-container .dashboard-wrapper .flex .item p {
  color: #959595;
  line-height: 1;
}
section.mypage-container .dashboard-wrapper .flex .item p.number {
  color: #000;
  text-decoration: underline;
  margin-top: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
section.mypage-container .dashboard-wrapper .flex .item p.number img {
  width: 20px;
}
section.mypage-container .info-wrapper {
  padding: 14rem 2rem;
}
@media (max-width: 768px) {
  section.mypage-container .info-wrapper {
    padding: 8rem 2rem;
  }
}
section.mypage-container .info-wrapper .inner {
  max-width: 1000px;
  margin: 0 auto;
}
section.mypage-container .info-wrapper .inner p.read {
  background-color: #0050aa;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  padding: 1.5rem 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  section.mypage-container .info-wrapper .inner p.read {
    font-size: 1.8rem;
    padding: 1.5rem;
    margin-bottom: 3rem;
  }
}
section.mypage-container .info-wrapper .inner table {
  width: 100%;
  line-height: 1.5;
  border-collapse: collapse;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  section.mypage-container .info-wrapper .inner table {
    margin-bottom: 5rem;
  }
}
section.mypage-container .info-wrapper .inner table tr {
  border-bottom: 2px solid #dfecf7;
  border-right: 2px solid #dfecf7;
  border-left: 2px solid #dfecf7;
}
section.mypage-container .info-wrapper .inner table tr:first-of-type {
  border-top: 2px solid #dfecf7;
}
section.mypage-container .info-wrapper .inner table th {
  background-color: #b4d2ec;
  width: 30%;
  padding: 1.5rem 2rem;
  text-align: left;
  vertical-align: middle;
  color: #0050aa;
  font-weight: 700;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  letter-spacing: 0.1rem;
}
@media (max-width: 768px) {
  section.mypage-container .info-wrapper .inner table th {
    display: block;
    width: 100%;
    padding: 1.5rem 1rem;
  }
}
section.mypage-container .info-wrapper .inner table td {
  background-color: #fff;
  width: 70%;
  padding: 1.5rem 2rem;
  vertical-align: middle;
  font-weight: 500;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  section.mypage-container .info-wrapper .inner table td {
    display: block;
    width: 100%;
    padding: 1.5rem 1rem;
  }
}
section.mypage-container .info-wrapper .btns {
  max-width: 320px;
  width: 100%;
  display: block;
  vertical-align: middle;
  margin: 0 auto 5rem;
  padding: 2rem;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  border-radius: 50px;
  border: none;
  font-size: 1.6rem;
  background-image: url("../images/btn_arrow.png");
  background-repeat: no-repeat;
  background-position: right 20px top 50%;
}
@media (max-width: 768px) {
  section.mypage-container .info-wrapper .btns {
    max-width: 245px;
    padding: 1.5rem;
    margin: 0 auto 3rem;
    font-size: 1.4rem;
  }
}
section.mypage-container .info-wrapper .btns.submit {
  background-color: #0050aa;
  border: 1px solid #0050aa;
}
section.mypage-container .info-wrapper .btns.submit:hover {
  background-color: #fff;
  color: #0050aa;
  background-image: url("../images/btn_arrow_hover.png");
  opacity: 1;
}
section.mypage-container.apply-container {
  padding-top: 10rem;
}
@media (max-width: 768px) {
  section.mypage-container.apply-container {
    padding-top: 6rem;
  }
}
section.mypage-container.apply-container .inner-wrapper {
  max-width: 1040px;
  padding: 0 2rem;
  margin: 0 auto;
}
section.mypage-container.apply-container p.read {
  background-color: #0050aa;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  padding: 1.5rem 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 10rem;
}
@media (max-width: 768px) {
  section.mypage-container.apply-container p.read {
    font-size: 1.8rem;
    padding: 1.5rem;
    margin-bottom: 3rem;
  }
}
section.mypage-container.apply-container .url-wrapper {
  margin-top: 0;
}
@media (max-width: 768px) {
  section.mypage-container.apply-container .url-wrapper .item {
    margin-bottom: 3rem;
  }
}
section.mypage-container .favorite-wrapper {
  padding: 14rem 2rem;
}
@media (max-width: 768px) {
  section.mypage-container .favorite-wrapper {
    padding: 8rem 2rem;
  }
}
section.mypage-container .favorite-wrapper .inner {
  max-width: 1000px;
  margin: 0 auto;
}
section.mypage-container .favorite-wrapper p.read {
  background-color: #0050aa;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  padding: 1.5rem 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  section.mypage-container .favorite-wrapper p.read {
    font-size: 1.8rem;
    padding: 1.5rem;
    margin-bottom: 3rem;
  }
}
section.mypage-container .favorite-wrapper .result-wrapper.riyou {
  margin: 0 auto 8rem;
}
@media (max-width: 768px) {
  section.mypage-container .favorite-wrapper .result-wrapper.riyou {
    margin-bottom: 5rem;
  }
}
section.mypage-container .favorite-wrapper .result-items {
  margin-bottom: 0;
}
section.mypage-container .favorite-wrapper .tabs {
  max-width: 1000px;
  margin: 0 auto 8rem;
}
@media (max-width: 768px) {
  section.mypage-container .favorite-wrapper .tabs {
    margin-bottom: 5rem;
  }
}
section.mypage-container .favorite-wrapper .tabs .tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 4rem;
  width: 100%;
}
@media (max-width: 768px) {
  section.mypage-container .favorite-wrapper .tabs .tab-list {
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
    margin-bottom: 7rem;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }
}
section.mypage-container .favorite-wrapper .tabs .tab-list .tab-item {
  border-radius: 5px 5px 0 0;
  padding: 0 6rem 2rem;
  cursor: pointer;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
  border-bottom: 2px solid #e5e5e5;
  width: calc(100% / 2);
  text-align: center;
  color: #707070;
}
@media (max-width: 768px) {
  section.mypage-container .favorite-wrapper .tabs .tab-list .tab-item {
    font-size: 1.6rem;
    padding: 1.5rem 3rem;
    line-height: 1.5;
  }
}
section.mypage-container .favorite-wrapper .tabs .tab-list .tab-item.active {
  color: #0050aa;
  border-bottom: 2px solid #0050aa;
}
section.mypage-container .favorite-wrapper .tabs .tab-list .tab-item span {
  margin-left: 2rem;
}
section.mypage-container .favorite-wrapper .tab-panel {
  display: none;
}
section.mypage-container .favorite-wrapper .tab-panel.active {
  display: block;
}
section.mypage-container .favorite-wrapper .item {
  border: 1px solid #e5e5e5;
}
section.mypage-container .favorite-wrapper .item .flex {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
  -webkit-column-gap: 3rem;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
}
section.mypage-container .favorite-wrapper .item .btn-box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 768px) {
  section.mypage-container .favorite-wrapper .item .btn-box {
    width: 100%;
  }
}
section.mypage-container .favorite-wrapper .item .btn-box a {
  display: block;
  width: 100% !important;
}
section.mypage-container .favorite-wrapper .item .btn-box a.contact {
  padding: 0;
  background-color: transparent;
  color: #000;
  border: none;
  margin-top: 2rem;
  background-image: url("../images/btn_arrow_black.png");
  background-repeat: no-repeat;
  background-position: right 20px top 50%;
}
@media (max-width: 768px) {
  section.mypage-container .favorite-wrapper .item .btn-box a.contact {
    background-position: right 15px top 50%;
  }
}
section.mypage-container .favorite-wrapper .followers-list .item {
  border-radius: 20px;
  padding: 1.5rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  section.mypage-container .favorite-wrapper .followers-list .item {
    display: block;
  }
}
section.mypage-container
  .favorite-wrapper
  .followers-list
  .item:not(:last-of-type) {
  margin-bottom: 2rem;
}
section.mypage-container .favorite-wrapper .followers-list .item .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}
@media (max-width: 768px) {
  section.mypage-container .favorite-wrapper .followers-list .item .inner {
    display: block;
  }
}
section.mypage-container .favorite-wrapper .followers-list .item .inner .name {
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  section.mypage-container
    .favorite-wrapper
    .followers-list
    .item
    .inner
    .name {
    font-size: 1.8rem;
  }
}
section.mypage-container .favorite-wrapper .followers-list .item .inner .det {
  color: #666;
  padding-left: 1rem;
}
@media (max-width: 768px) {
  section.mypage-container .favorite-wrapper .followers-list .item .inner .det {
    padding-left: 0;
  }
}
section.mypage-container .favorite-wrapper .followers-list .item a {
  background-color: #0050aa;
  padding: 1rem 3rem;
  line-height: 1;
  color: #fff;
  border-radius: 50px;
  border: 1px solid #0050aa;
  display: block;
}
@media (max-width: 768px) {
  section.mypage-container .favorite-wrapper .followers-list .item a {
    text-align: center;
    max-width: 180px;
    margin: 1.5rem auto 0;
  }
}
section.mypage-container .favorite-wrapper .followers-list .item a:hover {
  background-color: #fff;
  color: #0050aa;
  opacity: 1;
}
section.mypage-container .login-wrapper {
  padding: 8rem 2rem 10rem;
  max-width: 1040px;
  margin: 0 auto;
}
section.mypage-container .login-wrapper p.read {
  color: #0050aa;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  section.mypage-container .login-wrapper p.read {
    font-size: 2rem;
  }
}
section.mypage-container .login-wrapper .tabs {
  margin-bottom: 8rem;
}
section.mypage-container .login-wrapper .tabs .tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 3px solid #0050aa;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 5rem;
  -moz-column-gap: 5rem;
  column-gap: 5rem;
}
@media (max-width: 768px) {
  section.mypage-container .login-wrapper .tabs .tab-list {
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
  }
}
section.mypage-container .login-wrapper .tabs .tab-list .tab-item {
  border-radius: 5px 5px 0 0;
  background-color: #fff;
  color: #0050aa;
  padding: 2rem 6rem;
  cursor: pointer;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
  max-width: 380px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 768px) {
  section.mypage-container .login-wrapper .tabs .tab-list .tab-item {
    font-size: 1.6rem;
    padding: 1.5rem 3rem;
    line-height: 1.5;
  }
}
section.mypage-container .login-wrapper .tabs .tab-list .tab-item.active {
  background-color: #0050aa;
  color: #fff;
}
section.mypage-container .login-wrapper .tab-panel {
  display: none;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  padding: 6rem 2rem 10rem;
  /* height: 550px; */
}
@media (max-width: 768px) {
  section.mypage-container .login-wrapper .tab-panel {
    height: auto;
    padding: 6rem 2rem;
  }
}
section.mypage-container .login-wrapper .tab-panel.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
section.mypage-container .login-wrapper .tab-panel .apply-block {
  max-width: 750px;
  margin: 0 auto;
}
section.mypage-container .login-wrapper .tab-panel .apply-block p {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  section.mypage-container .login-wrapper .tab-panel .apply-block p {
    margin-bottom: 5rem;
  }
}
section.mypage-container .login-wrapper .btns {
  max-width: 320px;
  width: 100%;
  display: block;
  vertical-align: middle;
  margin: 0 auto;
  padding: 2rem;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  border-radius: 50px;
  border: none;
  font-size: 1.6rem;
  background-image: url("../images/btn_arrow.png");
  background-repeat: no-repeat;
  background-position: right 20px top 50%;
}
@media (max-width: 768px) {
  section.mypage-container .login-wrapper .btns {
    max-width: 245px;
    padding: 1.5rem;
    margin: 0 auto 3rem;
    font-size: 1.4rem;
  }
}
section.mypage-container .login-wrapper .btns.submit {
  background-color: #0050aa;
  border: 1px solid #0050aa;
}
section.mypage-container .login-wrapper .btns.submit:hover {
  background-color: #fff;
  color: #0050aa;
  background-image: url("../images/btn_arrow_hover.png");
  opacity: 1;
}
section.mypage-container .login-wrapper .inner-box {
  max-width: 700px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
}
@media (max-width: 768px) {
  section.mypage-container .login-wrapper .inner-box {
    display: block;
  }
}
section.mypage-container .login-wrapper .inner-box p {
  color: #0050aa;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 1rem;
  width: 10em;
}
@media (max-width: 768px) {
  section.mypage-container .login-wrapper .inner-box p {
    margin-bottom: 2rem;
    width: 100%;
  }
}
section.mypage-container .login-wrapper .form-block {
  margin-bottom: 5rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 768px) {
  section.mypage-container .login-wrapper .form-block {
    margin-bottom: 3rem;
  }
}
section.mypage-container .login-wrapper .form-block input {
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background-color: #fff;
  padding: 1rem 1.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  section.mypage-container .login-wrapper .form-block input {
    width: 100%;
    margin-bottom: 2rem;
  }
}
section.mypage-container .login-wrapper .form-block p.cmt {
  font-size: 1.4rem;
  color: #000;
  font-weight: normal;
  color: #8a8a8a;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  width: 100%;
}
@media (max-width: 768px) {
  section.mypage-container .login-wrapper .form-block p.cmt {
    margin-left: 0;
    display: block;
    font-size: 1.3rem;
    margin-top: 0;
    width: 100%;
  }
}
section.mypage-container .login-wrapper .form-block a {
  display: block;
  font-size: 1.6rem;
  text-decoration: underline;
  color: #0050aa;
  margin-top: 2rem;
  line-height: 1;
}
@media (max-width: 768px) {
  section.mypage-container .login-wrapper .form-block a {
    font-size: 1.3rem;
  }
}
section.mypage-container .login-wrapper .login-inner {
  border-radius: 20px;
  background-color: #fff;
  padding: 6rem 7rem 10rem;
  margin-bottom: 10rem;
}

section.mypage-container .login-wrapper .login-inner.password-reset {
  margin-bottom: 3rem;
  padding-bottom: 6rem;
}

@media (max-width: 768px) {
  section.mypage-container .login-wrapper .login-inner {
    padding: 3rem 2rem;
    margin-bottom: 6rem;
  }

  section.mypage-container .login-wrapper .login-inner.password-reset {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
  }
}
section.mypage-container .login-wrapper .login-inner input {
  margin-bottom: 0;
}
section.mypage-container .login-wrapper .login-inner p.text {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  section.mypage-container .login-wrapper .login-inner p.text {
    margin-bottom: 3rem;
  }
}
section.mypage-container .login-wrapper .login-inner p.attn {
  color: #b62727;
  margin-bottom: 0;
}
section.mypage-container .login-wrapper .login-inner p.blue-ttl {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  line-height: 32px;
  color: #0050aa;
  margin-bottom: 2rem;
}
section.mypage-container .login-wrapper .login-inner p.blue-ttl img {
  margin-right: 1rem;
  width: 32px;
}
section.mypage-container .login-wrapper .login-inner ul {
  color: #0050aa;
  margin-bottom: 3rem;
}
section.mypage-container .login-wrapper .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 8rem;
  -moz-column-gap: 8rem;
  column-gap: 8rem;
}
@media (max-width: 768px) {
  section.mypage-container .login-wrapper .btn-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
section.mypage-container .login-wrapper .btn-box .btns {
  max-width: 320px;
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1rem;
  padding: 2rem;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  border-radius: 50px;
  border: none;
  font-size: 1.6rem;
  background-image: url("../images/btn_arrow.png");
  background-repeat: no-repeat;
  background-position: right 20px top 50%;
  text-align: center;
}
@media (max-width: 768px) {
  section.mypage-container .login-wrapper .btn-box .btns {
    max-width: 245px;
    padding: 1.5rem;
    margin: 0 auto 1rem;
    text-align: center;
    font-size: 1.4rem;
  }
}
section.mypage-container .login-wrapper .btn-box .btns.submit {
  background-color: #0050aa;
  border: 1px solid #0050aa;
}
section.mypage-container .login-wrapper .btn-box .btns.submit:hover {
  background-color: #fff;
  color: #0050aa;
  background-image: url("../images/btn_arrow_hover.png");
  opacity: 1;
}
section.mypage-container .login-wrapper .btn-box .btns.reset {
  background-color: #a2a2a2;
}
section.mypage-container .login-wrapper .btn-box .btns.reset:hover {
  opacity: 0.8;
}
section.mypage-container .login-wrapper .btn-box .btns.white {
  background-color: #fff;
  color: #0050aa;
  border: 1px solid #0050aa;
  background-image: url("../images/btn_arrow_left_hover.png");
  background-repeat: no-repeat;
  background-position: left 20px top 50%;
  text-align: center;
}
section.mypage-container .login-wrapper .btn-box .btns.white:hover {
  background-color: #0050aa;
  color: #fff;
  background-image: url("../images/btn_arrow_left.png");
  opacity: 1;
}
@media (max-width: 768px) {
  section.mypage-container .login-wrapper .btn-box .btns:nth-of-type(2) {
    margin-top: 1rem;
  }
}
