@charset "UTF-8";

/* ========================================
 *  Font Family
 * ======================================== */
/* ==============================
*   Color
*==============================*/
/* ==============================
*   Font Size
*==============================*/
/*==============================
//  Media Query
//==============================*/
body {
  min-width: 1100px;
}

body.modal {
  min-width: auto;
}

@media screen and (max-width: 767px) {
  body {
    min-width: initial;
  }
}

/*==============================
//  Font Size Rem
//
//  【概要】        font-sizeの単位をremに変換する
//  【第一引数】    希望のfont-size（数字のみ）
//  【備考】        IE対応のためpxでも出力する
//==============================*/
/*==============================
//  Font Size Rem Line Height Half Leading
//
//  【概要】
//      ・font-sizeの単位をremに変換
//      ・行間のサイズをもとに自動でline-heightを指定
//      ・ハーフリーディングを自動調整
//  【第一引数】
//      ・希望のfont-size（数字のみ）
//  【第二引数】
//      ・希望の行間サイズ（数字のみ）
//==============================*/
/*==============================
//
//  【概要】
//      ・pxをvwに変換
//  【第一引数】
//      ・pxサイズ（数字のみ）
//  【第二引数】
//      ・デザイン幅（数字のみ）初期値はf-variableに記述
//==============================*/
/*==============================
//  px→vwの計算
//==============================*/
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

@media screen and (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: normal;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  top: -0.5em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: normal;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #000000;
  line-height: 180%;
  position: relative;
  min-width: 1100px;
  font-size: 18px;
  background-color: #003670;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
    font-size: 0.8888888889rem;
    min-width: initial;
  }
}

a {
  text-decoration: underline;
  color: #003670;
  transition: 0.3s all;
}

a:hover {
  text-decoration: none;
}

button {
  outline: none;
}

td,
th {
  vertical-align: middle;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #bbb;
}

input::placeholder,
textarea::placeholder {
  color: #bbb;
}

img {
  max-width: 100%;
  backface-visibility: hidden;
}

[v-cloak] {
  display: none !important;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

[v-cloak] {
  display: none;
}

main {
  position: relative;
}

main {
  margin: 74px 0 0;
}

@media screen and (max-width: 767px) {
  main {
    margin: 60px 0 0;
  }
}

main.p-login {
  margin: 0;
}

/* ---------------------------------------------------------------------------
 * アニメーション
--------------------------------------------------------------------------- */
.sa {
  opacity: 0;
  transition: all 0.8s ease;
}

.sa.show {
  opacity: 1;
  transform: none;
}

.sa--lr {
  transform: translate(-100px, 0);
}

.sa--rl {
  transform: translate(100px, 0);
}

.sa--up {
  transform: translate(0, 50px);
}

.sa--down {
  transform: translate(0, -100px);
}

.sa--scaleUp {
  transform: scale(0.5);
}

.sa--scaleDown {
  transform: scale(1.5);
}

.sa--rotateL {
  transform: rotate(180deg);
}

.sa--rotateR {
  transform: rotate(-180deg);
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.c-btn_right a {
  width: 100%;
  max-width: 320px;
  height: 60px;
  background-color: #0096dc;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .c-btn_right a {
    font-size: 18px;
    font-size: 1rem;
    height: 14.6666666667vw;
    max-width: 100%;
  }
}

.c-btn_right a::after {
  display: block;
  content: "";
  position: absolute;
  top: 25px;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .c-btn_right a::after {
    right: 5.3333333333vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    top: 5.8666666667vw;
  }
}

.c-btn_right a:hover {
  opacity: 0.8;
}

.c-btn_preview {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: calc(100% - 20px);
  height: 40px;
  background-color: #0096dc;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 10px auto 0;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .c-btn_preview {
    font-size: 16px;
    font-size: 0.8888888889rem;
    height: 12.8vw;
    width: calc(100% - 5.3333333333vw);
    left: 2.6666666667vw;
    bottom: 2.6666666667vw;
    text-align: center;
    line-height: 120%;
  }
}

.c-form #entryForm input[type=text],
.c-form #entryForm input[type=email],
.c-form #entryForm input[type=tel],
.c-form #entryForm input[type=password],
.c-form #entryForm input[type=date] {
  width: 100%;
  padding: 12px 24px;
  border: 1px solid #CCCCCC;
  background-color: #f8fbff;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 150%;
  -webkit-appearance: none;
}

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

  .c-form #entryForm input[type=text],
  .c-form #entryForm input[type=email],
  .c-form #entryForm input[type=tel],
  .c-form #entryForm input[type=password],
  .c-form #entryForm input[type=date] {
    font-size: 16px;
    padding: 2.9333333333vw 4vw;
  }
}

.c-form #entryForm input[type=text].wide_s,
.c-form #entryForm input[type=email].wide_s,
.c-form #entryForm input[type=tel].wide_s,
.c-form #entryForm input[type=password].wide_s,
.c-form #entryForm input[type=date].wide_s {
  width: calc(50% - 10px);
}

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

  .c-form #entryForm input[type=text].wide_s,
  .c-form #entryForm input[type=email].wide_s,
  .c-form #entryForm input[type=tel].wide_s,
  .c-form #entryForm input[type=password].wide_s,
  .c-form #entryForm input[type=date].wide_s {
    width: 100%;
  }
}

.c-form #entryForm input[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

.c-form #entryForm textarea {
  width: 100%;
  height: 165px;
  box-sizing: border-box;
  padding: 12px 24px;
  border: 1px solid #CCCCCC;
  background-color: #f8fbff;
  border-radius: 6px;
  font-size: 16px;
  line-height: 150%;
  -webkit-appearance: none;
  resize: vertical;
}

@media screen and (max-width: 767px) {
  .c-form #entryForm textarea {
    font-size: 16px;
    padding: 3.2vw 2.6666666667vw;
  }
}

.c-form #entryForm .selectbox {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 50%;
}

@media screen and (max-width: 767px) {
  .c-form #entryForm .selectbox {
    width: 100%;
  }
}

.c-form #entryForm .selectbox::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 12px;
  height: 6px;
  transform: translateY(-50%);
  background: url(../images/arrow_down.svg) center center no-repeat;
  background-size: cover;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .c-form #entryForm .selectbox::after {
    right: 4vw;
  }
}

.c-form #entryForm .selectbox select {
  padding: 11px 30px 11px 24px;
  border: 1px solid #CCCCCC;
  background-color: #f8fbff;
  border-radius: 6px;
  font-size: 16px;
  line-height: 150%;
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .c-form #entryForm .selectbox select {
    font-size: 16px;
    padding: 3.2vw 4vw;
  }
}

.c-form #entryForm p.error {
  color: #d51d1d;
  font-size: 13px;
  margin-top: 7px;
  line-height: 150%;
}

@media screen and (max-width: 767px) {
  .c-form #entryForm p.error {
    margin-top: 1.8666666667vw;
  }
}

.c-form #entryForm p.comment {
  color: #AFAFAF;
  font-size: 13px;
  margin-top: 7px;
  line-height: 150%;
}

@media screen and (max-width: 767px) {
  .c-form #entryForm p.comment {
    margin-top: 1.8666666667vw;
  }
}

.c-form #entryForm {
  /* CHECKBOX */
}

.c-form #entryForm label input[type=checkbox]+span {
  font-size: 16px;
  margin: 0;
  position: relative;
  padding: 0 0 0 40px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .c-form #entryForm label input[type=checkbox]+span {
    font-size: 4vw;
    font-weight: 500;
    margin: 0 0 2.1333333333vw 0;
    padding: 0 0 0 9.3333333333vw;
  }
}

.c-form #entryForm label input[type=checkbox]+span::before,
.c-form #entryForm label input[type=checkbox]+span::after {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 0;
  cursor: pointer;
}

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

  .c-form #entryForm label input[type=checkbox]+span::before,
  .c-form #entryForm label input[type=checkbox]+span::after {
    top: -0.5333333333vw;
  }
}

.c-form #entryForm label input[type=checkbox]+span::before {
  width: 1.6em;
  height: 1.6em;
  margin-top: -0.8em;
  border: 1px solid #dfedf4;
  background-color: #ffffff;
  border-radius: 3px;
  z-index: 0;
  transition: 0.3s all;
}

@media screen and (max-width: 767px) {
  .c-form #entryForm label input[type=checkbox]+span::before {
    margin-top: 0;
  }
}

.c-form #entryForm label input[type=checkbox]+span::after {
  width: 0.5em;
  height: 0.7em;
  margin-top: -0.5em;
  margin-left: 0.6em;
  transform: scale(0) rotate(45deg);
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .c-form #entryForm label input[type=checkbox]+span::after {
    margin-top: 1.6vw;
  }
}

.c-form #entryForm label input[type=checkbox]:checked+span::before {
  border: none;
}

.c-form #entryForm label input[type=checkbox]:checked+span::after {
  border: 0.1875em solid #ffffff;
  border-width: 0 0.1875em 0.1875em 0;
  transform: scale(1) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .c-form #entryForm label input[type=checkbox]:checked+span::after {
    border: 0.2em solid #ffffff;
    border-width: 0 0.2em 0.2em 0;
  }
}

.c-form #entryForm label input[type=checkbox]:checked+span::before {
  background-color: #003670;
}

input+select,
input+textarea,
select+input,
select+textarea,
textarea+input,
textarea+select {
  margin-top: 0.75em;
}

:-moz-placeholder {
  color: #AFAFAF;
}

:placeholder-shown {
  color: #AFAFAF;
}

::-webkit-input-placeholder {
  color: #AFAFAF;
}

:-moz-placeholder {
  color: #AFAFAF;
  opacity: 1;
}

::-moz-placeholder {
  color: #AFAFAF;
  opacity: 1;
}

:focus:-moz-placeholder {
  color: inherit;
}

:focus:placeholder-shown {
  color: inherit;
}

:focus::-webkit-input-placeholder {
  font-size: 0;
}

:focus:-moz-placeholder {
  font-size: 0;
}

:focus::-moz-placeholder {
  font-size: 0;
}

:focus:-ms-input-placeholder {
  font-size: 0;
}

select::-ms-expand {
  display: none;
}

input[type=checkbox],
input[type=radio] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  display: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.buttonArea {
  padding: 25px 0 0;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .buttonArea {
    justify-content: space-between;
    padding: 0;
  }
}

.buttonArea li {
  width: 320px;
  margin: 0 10px;
}

@media screen and (max-width: 767px) {
  .buttonArea li {
    width: 100%;
    margin: 0;
  }

  .buttonArea li:first-of-type {
    margin-bottom: 4vw;
  }
}

.buttonArea li .button_wrap {
  color: #ffffff;
  position: relative;
  line-height: 150%;
  width: 100%;
}

.buttonArea li .button_wrap::after {
  display: block;
  content: "";
  position: absolute;
  top: 25px;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .buttonArea li .button_wrap::after {
    top: 5.8666666667vw;
    right: 5.3333333333vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}

.buttonArea li .button_wrap:hover {
  opacity: 0.8;
}

.buttonArea li .button_wrap input[type=submit] {
  width: 100%;
  height: 60px;
  background-color: #0096dc;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .buttonArea li .button_wrap input[type=submit] {
    font-size: 18px;
    font-size: 1rem;
    height: 14.6666666667vw;
  }
}

.buttonArea li .button_wrap input[type=button] {
  width: 100%;
  height: 60px;
  background-color: #0096dc;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .buttonArea li .button_wrap input[type=button] {
    font-size: 18px;
    font-size: 1rem;
    height: 14.6666666667vw;
  }
}

.buttonArea li .button_wrap.graybtn::after {
  top: 25px;
  left: 20px;
  transform: rotate(-135deg);
}

@media screen and (max-width: 767px) {
  .buttonArea li .button_wrap.graybtn::after {
    top: 5.8666666667vw;
    left: 5.3333333333vw;
  }
}

.buttonArea li .button_wrap.graybtn input[type=button] {
  width: 100%;
  height: 60px;
  background-color: #AFAFAF;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .buttonArea li .button_wrap.graybtn input[type=button] {
    font-size: 18px;
    font-size: 1rem;
    height: 14.6666666667vw;
  }
}

.buttonArea li .button_wrap.graybtn:hover {
  opacity: 0.8;
}

.c-title_h2 {
  width: 100%;
  height: 110px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(to right, #003670, #0096dc);
}

@media screen and (max-width: 767px) {
  .c-title_h2 {
    height: 16vw;
    font-size: 24px;
    font-size: 1.3333333333rem;
  }
}

.p-header {
  width: 100%;
  min-width: 1100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

@media screen and (max-width: 767px) {
  .p-header {
    min-width: 100%;
    position: fixed;
  }
}

.p-header .inner {
  width: 100%;
  height: 74px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #dddddd;
}

@media screen and (max-width: 767px) {
  .p-header .inner {
    height: 60px;
  }
}

.p-header .inner .logo {
  width: 330px;
  margin: 0 0 0 40px;
}

@media screen and (max-width: 767px) {
  .p-header .inner .logo {
    height: auto;
    width: 60%;
    margin: 0 0 0 4vw;
  }
}

.p-header .inner .logo:hover {
  opacity: 0.8;
}

.p-header .inner .logo img {
  display: block;
  width: auto;
}

@media screen and (max-width: 767px) {
  .p-header .inner .logo img {
    width: 100%;
  }
}

.p-footer {
  background-color: #003670;
  width: 100%;
  height: auto;
}

.p-footer a {
  color: #ffffff;
  text-decoration: none;
}

.p-footer .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 20px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .p-footer .inner {
    flex-flow: column;
    padding: 10.6666666667vw 4vw;
  }
}

.p-footer .inner .leftwrap {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .p-footer .inner .leftwrap {
    width: 100%;
    text-align: center;
    margin-bottom: 5.3333333333vw;
  }
}

.p-footer .inner .leftwrap p {
  line-height: 1.7;
  font-size: 12px;
}

.p-footer .inner .leftwrap p span {
  font-size: 14px;
}

.p-footer .inner .rightwrap {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .p-footer .inner .rightwrap {
    width: 100%;
  }
}

.p-footer .inner .rightwrap .sslwrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-end;
}

.p-footer .inner .rightwrap .sslwrap p {
  font-size: 12px;
  text-align: right;
  line-height: 160%;
}

@media screen and (max-width: 767px) {
  .p-footer .inner .rightwrap .sslwrap p {
    width: calc(100% - 120px);
    text-align: left;
  }
}

.p-footer .inner .rightwrap .sslwrap .sealwrap {
  background-color: #fff;
  padding: 5px;
  width: 110px;
  height: 60px;
  margin-left: 10px;
}

.p-footer .inner .copywrap {
  max-width: 1000px;
  width: 100%;
  margin: 20px auto 0;
  padding-top: 20px;
  border-top: 1px solid #0e4581;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-footer .inner .copywrap {
    text-align: left;
  }
}

.p-footer .inner .copywrap .copy {
  font-size: 12px;
  font-family: "PT Sans", sans-serif;
}

.p-footer .inner .copywrap .txt {
  font-size: 12px;
  margin-bottom: 8px;
  line-height: 140%;
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 50px;
  transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transform: translateY(100px);
  z-index: 20;
  padding-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 5.3333333333vw;
    right: 2.6666666667vw;
    padding-bottom: 0;
  }
}

.pagetop.on {
  transform: translateY(0);
}

.pagetop a {
  display: inline-block;
  width: 55px;
  height: 55px;
}

@media screen and (max-width: 767px) {
  .pagetop a {
    width: 40px;
    height: 40px;
  }
}

.pagetop a:hover {
  opacity: 0.8;
}

.p-download {
  width: 100%;
  background: #fff url(../images/bg.png) top center repeat-y;
  background-size: 100% auto;
  padding: 0 0 100px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-download {
    background: #fff url(../images/bg.png) top center repeat-y;
    background-size: 200% auto;
    padding: 0 0 16vw;
  }
}

.p-download_wrap {
  max-width: 1000px;
  padding: 60px 0 0;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-download_wrap {
    padding: 8vw 4vw 0;
  }
}

.p-download_wrap_txt {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-download_wrap_txt {
    text-align: left;
  }
}

.p-download_wrap_ditail {
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid #dddddd;
}

@media screen and (max-width: 767px) {
  .p-download_wrap_ditail {
    margin: 5.3333333333vw 0 0;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-download_wrap_ditail li {
  height: auto;
  min-height: 200px;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
  background: #ffffff;
  padding: 10px 10px 60px 10px;
  position: relative;
  margin-top: -1px;
}

@media screen and (max-width: 767px) {
  .p-download_wrap_ditail li {
    padding: 2.6666666667vw 2.6666666667vw 17.3333333333vw 2.6666666667vw;
  }
}

.p-download_wrap_ditail li .img {
  width: 100px;
  height: 140px;
  margin: 10px auto 15px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .p-download_wrap_ditail li .img {
    width: 26.6666666667vw;
    height: 37.3333333333vw;
    margin: 2.6666666667vw auto 4vw;
  }
}

.p-download_wrap_ditail li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-download_wrap_ditail li .ttl {
  font-size: 15px;
  line-height: 140%;
  color: #000000;
}

@media screen and (max-width: 767px) {
  .p-download_wrap_ditail li .ttl {
    font-size: 15px;
    font-size: 0.8333333333rem;
  }
}

.p-download_wrap_ditail li .ttl small {
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .p-download_wrap_ditail li .ttl small {
    font-size: 12px;
    font-size: 0.6666666667rem;
  }
}

.p-download_wrap_ditail li a {
  text-decoration: none;
}

.p-download_wrap_ditail li a:hover {
  opacity: 0.8;
}

.p-login {
  width: 100%;
  background: #fff url(../images/bg.png) top center repeat-y;
  background-size: 100% auto;
  padding: 60px 0 100px;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-login {
    padding: 5.3333333333vw 0 16vw;
  }
}

.p-login::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: rgba(132, 200, 234, 0.15);
  pointer-events: none;
  z-index: 0;
}

.p-login_logo {
  width: 330px;
  height: auto;
  margin: 0 auto 10px;
}

@media screen and (max-width: 767px) {
  .p-login_logo {
    width: 80%;
    margin: 0 auto 2.6666666667vw;
  }
}

.p-login_logo img {
  width: 100%;
}

.p-login_wrap {
  width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  padding: 50px 60px;
}

@media screen and (max-width: 767px) {
  .p-login_wrap {
    max-width: calc(100% - 8vw);
    padding: 8vw 5.3333333333vw;
  }
}

.p-login_wrap_ttl h2 {
  font-size: 24px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-weight: bold;
  color: #003670;
  border-bottom: 1px solid #dfedf4;
}

@media screen and (max-width: 767px) {
  .p-login_wrap_ttl h2 {
    font-size: 24px;
    font-size: 1.3333333333rem;
    margin-bottom: 4vw;
    padding-bottom: 2.6666666667vw;
  }
}

.p-login_wrap_ditail {
  text-align: left;
}

.p-login_wrap_ditail .txt_last {
  text-align: center;
  font-size: 16px;
  line-height: 160%;
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .p-login_wrap_ditail .txt_last {
    font-size: 0.8888888889rem;
    margin-top: 2.6666666667vw;
  }
}

.p-login_wrap_ditail dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-flow: column;
  text-align: left;
}

.p-login_wrap_ditail dl dt {
  width: 100%;
  font-size: 16px;
  font-weight: bold;
}

.p-login_wrap_ditail dl dd {
  width: 100%;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .p-login_wrap_ditail dl dd {
    margin-bottom: 4vw;
  }
}

@media screen and (max-width: 767px) {
  .p-login .buttonArea {
    margin-top: 4vw;
  }
}

.p-login_link {
  margin-top: 15px;
  color: #003670;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-login_link {
    margin-top: 0;
  }
}

.p-login_list {
  margin-top: 25px;
}

.p-login_list li {
  font-size: 15px;
  line-height: 150%;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.p-login_list li span {
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .p-login_list {
    margin-top: 2.6666666667vw;
  }

  .p-login_list li {
    font-size: 0.8333333333rem;
    margin-bottom: 1.3333333333vw;
    padding-left: 4vw;
  }
}

.p-mypage {
  width: 100%;
  background: #fff url(../images/bg.png) top center repeat-y;
  background-size: 100% auto;
  padding: 0 0 100px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-mypage {
    padding: 0 0 16vw;
  }
}

.p-mypage::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: rgba(132, 200, 234, 0.15);
  pointer-events: none;
  z-index: 0;
}

.p-mypage_wrap {
  max-width: 1000px;
  padding: 60px 0 0;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-mypage_wrap {
    max-width: calc(100% - 8vw);
    padding: 8vw 0 0;
  }
}

.p-mypage_wrap_txt {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-mypage_wrap_txt {
    text-align: left;
  }
}

.p-mypage_wrap_txt2 {
  text-align: center;
  margin: 30px 0;
}

@media screen and (max-width: 767px) {
  .p-mypage_wrap_txt2 {
    text-align: left;
    margin: 5.3333333333vw 0;
  }
}

.p-mypage_wrap_ditail {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  padding: 20px 50px 50px;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .p-mypage_wrap_ditail {
    padding: 0 5.3333333333vw 5.3333333333vw;
    margin-top: 4vw;
  }
}

.p-mypage_wrap_ditail dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 20px 0;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .p-mypage_wrap_ditail dl {
    flex-flow: column;
    padding: 5.3333333333vw 0;
  }
}

.p-mypage_wrap_ditail dl dt {
  padding: 20px 0 20px 70px;
  box-sizing: border-box;
  position: relative;
  font-weight: bold;
  color: #444444;
  width: 250px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 16px;
  line-height: 150%;
  border-bottom: 1px solid #dfedf4;
}

@media screen and (max-width: 767px) {
  .p-mypage_wrap_ditail dl dt {
    padding: 5.3333333333vw 0 0 14.6666666667vw;
    width: 100%;
    display: block;
    border-bottom: none;
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}

.p-mypage_wrap_ditail dl dt::after {
  content: "任意";
  width: 55px;
  height: 27px;
  padding: 0;
  background: #AFAFAF;
  border-radius: 3px;
  color: #ffffff;
  font-size: 14px;
  line-height: 27px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .p-mypage_wrap_ditail dl dt::after {
    font-size: 13px;
    font-size: 0.7222222222rem;
    width: 12vw;
    height: 6.1333333333vw;
    top: 5.3333333333vw;
    margin-top: 0;
    line-height: 6.1333333333vw;
    transform: translateY(0);
  }
}

.p-mypage_wrap_ditail dl dt.required:after {
  content: "必須";
  background: #d51d1d;
}

.p-mypage_wrap_ditail dl dt.first {
  border-top: 1px solid #dfedf4;
}

.p-mypage_wrap_ditail dl dd {
  padding: 20px 0;
  box-sizing: border-box;
  font-size: 16px;
  width: calc(100% - 250px);
  border-bottom: 1px solid #dfedf4;
}

@media screen and (max-width: 767px) {
  .p-mypage_wrap_ditail dl dd {
    padding: 2.6666666667vw 0 5.3333333333vw;
    width: 100%;
    display: block;
  }
}

.p-mypage_wrap_ditail dl dd.first {
  border-top: 1px solid #dfedf4;
}

@media screen and (max-width: 767px) {
  .p-mypage_wrap_ditail dl dd.first {
    border-top: none;
  }
}

.p-mypage_wrap_ditail dl dd .box {
  display: flex;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .p-mypage_wrap_ditail dl dd .box {
    grid-template-columns: 1fr;
    gap: 2.6666666667vw;
  }
}

.p-mypage_wrap_ditail dl dd .box li {
  width: 100%;
}

.p-mypage_wrap_ditail dl dd.adress {
  display: flex;
  flex-flow: column;
}

.p-mypage_sub {
  font-weight: bold;
  margin-bottom: 3px;
  color: #444444;
}

.u-mb--0 {
  margin-bottom: 0px !important;
}

.u-mb--xxs {
  margin-bottom: 10px !important;
}

@media screen and (max-width: 767px) {
  .u-mb--xxs {
    margin-bottom: 1.3333333333vw !important;
  }
}

.u-mb--xs {
  margin-bottom: 15px !important;
}

@media screen and (max-width: 767px) {
  .u-mb--xs {
    margin-bottom: 2.6666666667vw !important;
  }
}

.u-mb--s {
  margin-bottom: 30px !important;
}

@media screen and (max-width: 767px) {
  .u-mb--s {
    margin-bottom: 4vw !important;
  }
}

.u-mb--m {
  margin-bottom: 40px !important;
}

@media screen and (max-width: 767px) {
  .u-mb--m {
    margin-bottom: 5.3333333333vw !important;
  }
}

.u-mb--l {
  margin-bottom: 50px !important;
}

@media screen and (max-width: 767px) {
  .u-mb--l {
    margin-bottom: 6.6666666667vw !important;
  }
}

.u-mb--15 {
  margin-bottom: 15px !important;
}

@media screen and (max-width: 767px) {
  .u-mb--15 {
    margin-bottom: 2.6666666667vw !important;
  }
}

.u-mb--60 {
  margin-bottom: 60px !important;
}

@media screen and (max-width: 767px) {
  .u-mb--60 {
    margin-bottom: 8vw !important;
  }
}

.u-mb--100 {
  margin-bottom: 100px !important;
}

@media screen and (max-width: 767px) {
  .u-mb--100 {
    margin-bottom: 13.3333333333vw !important;
  }
}

.u-mb--120 {
  margin-bottom: 120px !important;
}

@media screen and (max-width: 767px) {
  .u-mb--120 {
    margin-bottom: 16vw !important;
  }
}

.u-mt--0 {
  margin-top: 0px !important;
}

.u-mt--xxs {
  margin-top: 10px !important;
}

@media screen and (max-width: 767px) {
  .u-mt--xxs {
    margin-top: 1.3333333333vw !important;
  }
}

.u-mt--xs {
  margin-top: 20px !important;
}

@media screen and (max-width: 767px) {
  .u-mt--xs {
    margin-top: 2.6666666667vw !important;
  }
}

.u-mt--s {
  margin-top: 30px !important;
}

@media screen and (max-width: 767px) {
  .u-mt--s {
    margin-top: 4vw !important;
  }
}

.u-mt--m {
  margin-top: 40px !important;
}

@media screen and (max-width: 767px) {
  .u-mt--m {
    margin-top: 5.3333333333vw !important;
  }
}

.u-mt--l {
  margin-top: 50px !important;
}

@media screen and (max-width: 767px) {
  .u-mt--l {
    margin-top: 6.6666666667vw !important;
  }
}

.u-mt--60 {
  margin-top: 60px !important;
}

@media screen and (max-width: 767px) {
  .u-mt--60 {
    margin-top: 8vw !important;
  }
}

.u-mt--25 {
  margin-top: 25px !important;
}

@media screen and (max-width: 767px) {
  .u-mt--25 {
    margin-top: 5.3333333333vw !important;
  }
}

.u-sp-only {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block !important;
  }
}

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

.u-fontsize--22 {
  font-size: 22px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .u-fontsize--22 {
    font-size: 18px;
    font-size: 1rem;
  }
}

.u-fontcolor--red {
  color: #d51d1d;
}

.u-fontcolor--black {
  color: #000000 !important;
}

.u-lineheight--140 {
  line-height: 140% !important;
}

.u-text-align--center {
  text-align: center !important;
}

.u-width--200 {
  width: 200px !important;
}

@media screen and (max-width: 767px) {
  .u-width--200 {
    width: 80px !important;
  }
}

.u-width--200_ttl {
  width: 200px !important;
}

@media screen and (max-width: 767px) {
  .u-width--200_ttl {
    width: 60px !important;
  }
}

.u-width--170 {
  width: 170px !important;
}

@media screen and (max-width: 767px) {
  .u-width--170 {
    width: 60px !important;
  }
}

.u-width--180 {
  width: 180px !important;
}

.u-width--260 {
  width: 260px !important;
}

@media screen and (max-width: 767px) {
  .u-width--260 {
    width: 100px !important;
  }
}

.u-text-color--red {
  color: #d51d1d;
}