@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333333;
}
ol, ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*--------------------------
　header
--------------------------*/
header {
  background-color: #26354D;
  width: 100%;
  padding: 20px 40px;
  color: #FFF;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .service-logo {
  width: 100%;
  font-size: 3.2rem;
  font-weight: 700;
}
header .service-logo span {
  font-size: 1.2rem;
  font-weight: 400;
}
header.login-hdr .logout {
  display: block;
  width: 160px;
  height: 44px;
  border-radius: 21px;
  color: #FFF;
  line-height: 44px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  background: #683835;
  box-shadow: 0px 2px 2px 0px #00000026;
}
header.login-hdr .logout:hover {
  opacity: 0.7;
}
/*--------------------------
　footer
--------------------------*/
footer {
  border-top: solid 1px #E5E5E5;
  padding: 24px 0;
  font-size: 1.2rem;
  text-align: center;
}
footer ul {
  display: inline-flex;
  margin: 0 auto 16px;
  ;
}
footer ul li a {
  color: #333333;
  text-decoration: none;
}
footer ul li a:hover {
  text-decoration: underline;
}
footer ul li {
  padding: 0 32px;
  border-right: solid 1px #333333;
}
footer ul li:last-child {
  border-right: none;
}
/*--------------------------
　contents-width
--------------------------*/
.mainContents-area {
  padding: 80px 0;
}
.contents-wrap {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
.blk__920 {
  width: 920px;
  margin: auto;
}
.blk__480 {
  width: 480px;
  margin: auto;
}
/*--------------------------
　background
--------------------------*/
.bg__lightBlue {
  background-color: #D3E5EA;
}
.bg__lightGray {
  background-color: #F0F4F5;
}
/*--------------------------
　h1/h2/h3/h4
--------------------------*/
.mainContents-area h1 {
  font-size: 3.2rem;
  color: #26354D;
  font-weight: 700;
  text-align: center;
  display: block;
  margin: 0 auto 64px;
  padding-bottom: 16px;
  position: relative;
}
.mainContents-area h1:after {
  content: "";
  display: block;
  width: 120px;
  height: 6px;
  background-color: #F4683E;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.mainContents-area h2 {
  font-size: 2.4rem;
  color: #26354D;
  font-weight: 700;
  margin: 0 0 16px;
}
.mainContents-area h3 {
  font-size: 1.6rem;
  font-weight: 700;
}
/*--------------------------
　display
--------------------------*/
.sp {
  display: none;
}
/*--------------------------
　margin
--------------------------*/
.mb8 {
  margin-bottom: 8px;
}
.mb16 {
  margin-bottom: 16px;
}
.mb24 {
  margin-bottom: 24px;
}
.mb32 {
  margin-bottom: 32px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb64 {
  margin-bottom: 64px;
}
.mr24 {
  margin-right: 24px;
}
/*--------------------------
　padding
--------------------------*/
.pt16 {
  padding-top: 16px;
}
.pt24 {
  padding-top: 24px;
}
.pb16 {
  padding-bottom: 16px;
}
.pb24 {
  padding-bottom: 24px;
}
.pr16 {
  padding-right: 16px;
}
.pr24 {
  padding-right: 24px;
}
.pl16 {
  padding-left: 16px;
}
.pl24 {
  padding-left: 24px;
}
/*--------------------------
　text
--------------------------*/
.mainContents-area a.orange {
  color: #F4683E;
}
.mainContents-area a.blue {
  color: #0071C1;
}
.bold {
  font-weight: 700;
}
.orange {
  color: #F4683E;
}
.red {
  color: #D91B26;
}
.f-16 {
  font-size: 1.6rem;
}
.f-24 {
  font-size: 2.4rem;
}
.f-32 {
  font-size: 3.2rem;
}
.t-center {
  text-align: center;
}
/*--------------------------
　hover
--------------------------*/
a {
  transition: all 0.3s ease;
}
/*--------------------------
　button
--------------------------*/
.main-button {
  background-color: #F4683E;
  color: #FFF;
  border: none;
  border-radius: 8px;
  padding: 8px 24px;
  box-shadow: 0px 2px 2px 0px #00000026;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}
.main-button:hover {
  background-color: #FFAC93;
}
.sub-button {
  border: solid 1px #F4683E;
  color: #F4683E;
  border-radius: 8px;
  padding: 8px 24px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}
.sub-button:hover {
  border: solid 1px #FFAC93;
  color: #FFAC93;
}
.gray-button {
  border: solid 1px #26354D;
  color: #26354D;
  border-radius: 8px;
  padding: 8px 24px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}
.gray-button:hover {
  border: solid 1px #A6A6A6;
  color: #A6A6A6;
}
.button-area {
  display: flex;
}
/*--------------------------
　form
--------------------------*/
/*textbox*/
form .textbox {
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  background-color: #F8F8F8;
}
form .textbox:focus {
  outline: 0;
  background-color: #FFF;
}
form .textbox.w__236 {
  width: 236px;
}
form .textbox.w__480 {
  width: 480px;
}
/*radiobutton*/
label.radio-btn {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
}
label.radio-btn::before, label.radio-btn::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
label.radio-btn::before {
  background-color: #FFF;
  border: 1px solid #E0E0E0;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  left: 5px;
}
label.radio-btn::after {
  background-color: #FFF;
  border: 6px solid #4690FF;
  border-radius: 50%;
  opacity: 0;
  width: 20px;
  height: 20px;
  left: 5px
}
input:checked + label.radio-btn::after {
  opacity: 1;
}
.visually-hidden {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}
/*selectbox*/
.select {
  background: #cfcedb;
  height: 48px;
  width: 236px;
  background-color: #F8F8F8;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}
.select::after {
  position: absolute;
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 2px solid #26354D;
  border-right: 2px solid #26354D;
  z-index: -1;
}
select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  color: #333;
  font-size: 16px;
  width: 100%;
  height: 100%;
  padding: 0 10px;
}
form dl {
  margin-bottom: 24px;
}
form dl dt {
  font-weight: 700;
  margin-bottom: 8px;
}
form dl dt span.required {
  font-size: 1rem;
  color: #FFF;
  background-color: #D91B26;
  padding: 0 4px;
  vertical-align: 0.15rem;
}
form dl dd ul.clm-2 {
  display: flex;
  justify-content: space-between;
}
form dl dd li {
  padding: 8px 0;
}
form dl dd p {
  font-size: 1.2rem;
}
/*visibility*/
.visibility {
  display: flex;
  justify-content: space-between;
}
.visibility span {
  display: block;
}
.visibility span a {
  color: #333333;
  text-decoration: none;
}
.visibility span a:hover {
  color: #999999;
}
/*checkbox*/
.checkboxInputp-Box {
  display: flex;
}
.checkboxInput {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.checkboxInput-Input {
  margin: 0;
  width: 0;
  opacity: 0;
}
.checkboxInput:hover > .checkboxInput-DummyInput {
  background: #DDDDDD !important;
  border: solid 2px #26354D;
}
.checkboxInput-Input:focus + .checkboxInput-DummyInput {
  background: #DDDDDD !important;
  border: solid 2px #26354D;
}
.checkboxInput-Input:checked + .checkboxInput-DummyInput {
  border: solid 2px #26354D;
  background: #FFFFFF;
}
.checkboxInput-Input:checked + .checkboxInput-DummyInput::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItY2hlY2siPjxwb2x5bGluZSBwb2ludHM9IjIwIDYgOSAxNyA0IDEyIj48L3BvbHlsaW5lPjwvc3ZnPg==") no-repeat center;
  background-size: contain;
}
.checkboxInput-DummyInput {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  border: solid 2px #26354D;
  background: #FFFFFF;
  border-radius: 4px;
}
.checkboxInput-LabelText {
  margin-left: 12px;
  display: block;
}
/*--------------------------
　modal-window
--------------------------*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
  opacity: 1;
  visibility: visible;
}
/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 560px;
  width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  font-size: 32px;
  color: #26354D;
  cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content {
  background: #fff;
  text-align: left;
  padding: 30px;
}
/*-------------------- Confirm/Payment --------------------*/
.attention {
  padding: 16px 24px;
  margin-bottom: 24px;
}
.attention .icon {
  vertical-align: -0.5rem;
}
.confirm-all {
  margin-bottom: 24px;
}
.confirm-all > li, .payment-all > li {
  padding: 24px 0;
  border-bottom: solid 1px #E5E5E5;
}
.confirm-all dt {
  font-weight: 700;
  margin-bottom: 8px;
}
.confirm-all dd ul {
  display: flex;
  justify-content: space-between;
}
.confirm-all dd li {
  width: 49%;
}
.payment-all {
  border-top: solid 1px #E5E5E5;
  margin-bottom: 24px;
}
.payment-all > li dl {
  display: flex;
  justify-content: space-between;
}
.payment-all > li dl {
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
}
.payment-all .total {
  font-weight: 700;
}
/*-------------------- Thanks --------------------*/
.message {
  padding: 24px;
  margin: 0 0 24px;
}
.message p {
  margin-bottom: 16px;
}
.message p:last-child {
  margin-bottom: 0;
}
/*-------------------- Mypage --------------------*/
.mypage .detail {
  border: solid 1px #B7B7B7;
}
.mypage .detail li {
  border-bottom: solid 1px #B7B7B7;
}
.mypage .detail li:last-child {
  border-bottom: none;
}
.mypage .detail li dl {
  display: flex;
}
.mypage .detail li dt {
  width: 320px;
  padding: 16px;
  font-weight: 700;
  border-right: solid 1px #B7B7B7;
  display: flex;
}
.mypage .detail li dd {
  padding: 16px 24px;
  width: 600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mypage .detail li dl span {
  padding: 10px 0;
}
.mypage .detail li dl span a {
  text-decoration: none;
  color: #333333;
}
.mypage .detail .password dd {
  justify-content: flex-start;
}
.mypage .manual-pdf {
  padding: 16px 40px 16px 24px;
  position: relative;
}
.mypage .manual-pdf span {
  font-size: 16px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.mypage .upload-area {
  padding: 16px;
  border-radius: 8px;
  text-align: center;
}
.mypage .upload-area .inner {
  background-color: #FFF;
  padding: 24px;
  margin-bottom: 16px;
}
.mypage .upload-area .inner span {
  font-size: 8rem;
  color: #D3E5EA;
}
.mypage .notes {
  font-size: 1.2rem;
}
/*-------------------- Privacy/Terms/Company/faq --------------------*/
.privacy p, .terms p {
  margin-bottom: 24px;
}
.privacy li, .terms li {
  margin-bottom: 24px;
}
.privacy dt, .terms dt, .company dt {
  font-weight: bold;
  margin-bottom: 8px;
}
.terms h3, .faq h3 {
  color: #26354D;
  background: #D3E5EA;
  margin-bottom: 24px;
  padding: 8px;
}
.company li {
  border-bottom: solid 1px #E5E5E5;
  padding: 16px 0;
}
.faq li {
  margin-bottom: 32px;
}
.faq .category {
  margin-bottom: 40px;
}
.faq .category dt {
  color: #26354D;
  font-weight: bold;
  margin-bottom: 8px;
}
.faq .category dd ul {
  display: flex;
  flex-wrap: wrap;
}
.faq .category dd li {
  margin-bottom: 8px;
  padding: 0 32px;
  border-right: solid 1px #26354D;
}
.faq .category dd li:nth-child(1) {
  padding: 0 24px 0 0;
}
.faq .category dd li a {
  text-decoration: none;
}
.faq .category dd li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1199px) {
  /*--------------------------
　contents-width
--------------------------*/
  .contents-wrap {
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
  }
}
@media screen and (max-width: 919px) {}
@media screen and (max-width: 768px) {
  /*--------------------------
　contents-width
--------------------------*/
  .mainContents-area {
    padding: 32px 0;
  }
  .blk__920 {
    width: 100%;
  }
  /*--------------------------
　header
--------------------------*/
  header {
    padding: 10px 16px;
  }
  header .service-logo {
    font-size: 2rem;
    line-height: 1.3;
  }
  header .service-logo span {
    font-size: 0.8rem;
    display: block;
  }
	header.login-hdr .logout {
  width: 120px;
  height: 36px;
		font-size: 1.4rem;
  line-height: 36px;
  font-weight: 400;
}
  /*--------------------------
　footer
--------------------------*/
  footer {
    padding: 24px 0;
    background-color: #26354D;
    color: #FFF;
  }
  footer ul {
    display: block;
    text-align: left;
    margin: 0 auto 16px;
    ;
  }
  footer ul li a {
    color: #FFF;
    text-decoration: none;
  }
  footer ul li a:hover {
    text-decoration: none;
  }
  footer ul li {
    margin: 0 0 8px;
    padding: 0 0 0 16px;
    border-right: none;
    position: relative;
  }
  footer ul li:last-child {
    border-right: none;
  }
  footer ul li:before {
    content: "";
    display: block;
    width: 8px;
    height: 2px;
    background-color: #F4683E;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  footer p {
    width: 100%;
    color: #D3E5EA;
    border-top: solid 1px #D3E5EA;
    padding-top: 8px;
  }
  /*--------------------------
　contents-width
--------------------------*/
  .contents-wrap {
    padding: 0 5%;
  }
  .blk__480 {
    width: 100%;
  }
  /*--------------------------
　h1/h2/h3/h4
--------------------------*/
  .mainContents-area h1 {
    font-size: 2.4rem;
    margin: 0 auto 32px;
  }
  /*--------------------------
　display
--------------------------*/
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /*--------------------------
　button
--------------------------*/
  .mainContents-area .main-button {
    padding: 16px 24px;
    width: 100%;
  }
  .mainContents-area .sub-button {
    padding: 16px 24px;
    width: 100%;
  }
  .mainContents-area .button-area {
    display: block;
  }
  .mainContents-area .button-area li {
    width: 100%;
  }
  .mainContents-area .button-area li {
    margin-bottom: 16px;
  }
  .mainContents-area .button-area li:last-child {
    margin-bottom: 0;
  }
  /*--------------------------
　form
--------------------------*/
  /*textbox*/
  form .textbox.w__236 {
    width: 100%;
  }
  form .textbox.w__480 {
    width: 100%;
  }
  form dl dd ul.clm-2 li {
    width: 49%;
  }
  /*-------------------- Mypage --------------------*/
  .mypage .detail li dl {
    display: block;
  }
  .mypage .detail li dt {
    width: 100%;
    border-right: none;
    border-bottom: solid 1px #B7B7B7;
    display: block;
  }
  .mypage .detail li dd {
    padding: 16px 24px;
    width: 100%;
    display: block;
  }
  .mypage .detail li dd a {
    margin-top: 16px;
  }
  .mainContents-area.mypage .detail .sub-button {
    padding: 10px 24px;
  }
  .mypage .detail li dl span {
    padding: 0;
    display: block;
  }
  .mypage .detail .password dd {
    display: flex;
  }
  .faq .category dt {
    margin-bottom: 0;
  }
  .faq .category dd li {
    width: 50%;
    margin-bottom: 0;
    padding: 8px 24px;
    border-right: none;
    border-bottom: solid 1px #E5E5E5;
  }
  .faq .category dd li:nth-child(5), .faq .category dd li:nth-child(6) {
    border-bottom: none;
  }
  .faq .category dd li:nth-child(odd) {
    border-right: solid 1px #E5E5E5;
    padding: 8px 24px 8px 0;
  }
}