@charset "utf-8";

/*____________________________________________________________________________

SITE TITLE:

SITE LAUNCHED:2021.09
____________________________________________________________________________*/


/*----------------------------------------------------------------------------
 HTML elements
----------------------------------------------------------------------------*/
:root{
  font-size: 10px;
  line-height: 1.3;
  --main-color: #213C9D;
  --sub-color: #008DAB;
  --bg-color: #ffffff;
  --text-color: #262626;
  --text-color-hover: #213C9D;
}

html {
  font-size:10px;
}
body {
  margin: 0;
  padding: 0;
  color: var(--text-color);
  font-family: '游ゴシック体', 'Yu Gothic', YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-weight:400;
  font-style: normal;
  background: var(--bg-color);
}

a { transition:0.3s; }
a:link { color: var(--main-color); text-decoration: underline;}
a:visited { color: var(--main-color); text-decoration:none;}
a:active { color: var(--text-color-hover); text-decoration:none;}
a:hover { color: var(--text-color-hover); text-decoration:none;}
:focus{  outline:none; }
/*a:hover {
  opacity:0.6;
  filter:alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}*/

img {
  width:100%;
  height:auto;
  image-rendering: -webkit-optimize-contrast;
}

/* {border:1px solid #c00;}*/

@media only screen and (max-width:768px){
body {
  padding: 0 0;
}
}
/*----------------------------------------------------------------------------
 DEVICE
----------------------------------------------------------------------------*/

@media only screen and (min-width:769px){
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
.sp-inline  {
  display: none !important;
}
}

@media only screen and (max-width:768px){
.pc {
  display: none !important;
}
.sp {
  display: block !important;
}
.sp-inline  {
  display: inline-block !important;
}
}

/*----------------------------------------------------------------------------
 FONT SETTINGS
----------------------------------------------------------------------------*/

.c-content-heading {
  padding-bottom: 1em;
  margin-bottom: 0.375em;
  font-size: 3.2rem;
  font-weight: bold;
  border-bottom: 1px solid #e3e3e3;
}

.c-section-heading {
  font-size: 2.4rem;
  font-weight: bold;
}

.u-txt-primary {
  font-size: 1.6rem;
  
}
.u-txt-secondary {
  font-size: 1.4rem;
  
}
.u-txt-small {
  font-size: 1.2rem;
}

.u-txt-bold {
  font-weight: bold;
}
.u-txt-center {
  text-align: center;
}
.u-txt-right {
  text-align: right;
}

.u-color-blue {
  color: var(--main-color);
}
.c-content-heading .u-color-blue {
  color: #008DAB;
}

@media only screen and (max-width:768px){

.c-content-heading {
  padding-bottom: 1.2em;
  margin-bottom: 0.5em;
  font-size: 5.333vw;
  line-height: 1.3;
}

}
/*----------------------------------------------------------------------------
 COMMON LAYOUT
----------------------------------------------------------------------------*/
.l-container {
  position: relative;
  margin: 0;
  padding: 0;
}
.l-main {
  position: relative;
  margin:auto;
  padding: 0 0;
}

.l-main:before {
  content: "";
  width: 100%;
  height: 16px;
  background: linear-gradient(90deg, #0083AC 1.11%, #5BCDFF 101.11%);
  position: absolute;
  top: 0;
  left: 0;
}

.l-inner {
  position: relative;
  width: 700px;
  margin: auto;
}


@media only screen and (max-width:768px){
.l-main {
  margin:auto;
}
.l-inner {
  width: 92vw;
}
}

/*----------------------------------------------------------------------------
 FLEX
----------------------------------------------------------------------------*/

.p-layout-flex {
  display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
}
.u-flex__wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.u-flex__start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content:flex-start;
}
.u-flex__center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content:center;
}
.u-flex__a-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.u-flex__justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content:space-between;
}
.u-flex__end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content:flex-end;
}
.u-flex__reverse {
  flex-direction: row-reverse;
}
.u-flex__column {
  flex-flow: column;
}
@media only screen and (max-width:768px){
.sp_u-flex__column {
  flex-flow: column;
}
}



/*----------------------------------------------------------------------------
 HEADER
----------------------------------------------------------------------------*/
.l-header {
    width: 100%;
    margin: 0 auto 0;
  background: var(--bg-color);
}

.l-header .l-inner {
  width: 100%;
  height: 80px;
  padding: 16px 40px 20px;
}
.p-header-lead {
  font-size: 1.2rem;
}
.p-header-siteid {
  margin: 5px 0 0;
}
.c-siteid-logo {
  width: 150px;
}


@media only screen and (max-width: 768px) {

.l-header .l-inner {
  width: 100%;
  height: 14.4vw;
  padding: 2.133vw 4vw 0;
}
.p-header-lead {
  display: none;
}
.p-header-siteid {
  margin: 0;
  display: block;
}
.c-siteid-logo {
  margin-right: 0;
  width: 33.6vw;
}

}

/*----------------------------------------------------------------------------
 FOOTER
----------------------------------------------------------------------------*/

.l-footer {
  padding: 0 0 0;
}

.p-copyright {
  height: 56px;
  font-size:1.2rem;
  color: #ffffff;
  background: var(--sub-color);
}

@media only screen and (max-width:768px){

.l-footer {
  padding: 0 0 0;
}

}

/*----------------------------------------------------------------------------
 CONTENT HEADER
----------------------------------------------------------------------------*/

.p-content-header {
  padding: 64px 0 80px;
}

.p-content-lead {
  margin: 32px 0 4px;
  line-height: 1.7;
}
.c-arrow-right {
  padding-right: 15px;
  background: url(../images/icon_textlink.svg) no-repeat right;
}

.p-form-heading {
  margin: 32px auto;
  padding: 16px 24px;
  border: 1px solid var(--main-color);
}
.p-inquiry-title {
  margin-top: 8px;
}

@media only screen and (max-width: 768px) {

.p-content-header {
  padding: 14.933vw 0;
}

.p-content-lead {
  margin: 32px 0 4px;
  line-height: 1.7;
}
.p-form-heading {
  margin: 8.533vw auto 6.4vw;
  padding: 4.266vw 6.4vw;
}

.p-inquiry-title {
  margin-top: 2.133vw;
}

}

/*----------------------------------------------------------------------------
 CONTENT BODY
----------------------------------------------------------------------------*/

.l-content-body {
  padding: 0 0 40px;
  background: #F0FDFF;
  border-top: 1px solid #F0FDFF;
}
.l-content-section {
  padding: 40px 32px 40px;
  background: #ffffff;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

@media only screen and (max-width:768px){

.l-content-section {
  padding: 8.533vw 5.33vw;
}

}


/*----------------------------------------------------------------------------
 フォーム
----------------------------------------------------------------------------*/

.l-section-form {
  margin: -48px auto 40px;
}

.p-form-block {
  width: 100%;
  margin-bottom: 32px;
}

.p-label-form {
  margin-right: 24px;
  width: 244px;
  flex-basis: 244px;
  flex-shrink: 0;
}

.c-label-pt {
  padding-top: 1.25em;
}

.c-label-form {
  font-size: 1.6rem;
}
.c-icon-form {
  margin-top: -2px;
  width: 46px;
  height: 22px;
  padding: 3px 0;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
}
.c-icon-reqiured {
  color: #ffffff;
  background: #FF4057;
  border-radius: 4px;
  border: 1px solid #FF4057;
}
.c-icon-option {
  color: #A6A6A6;
  background: #ffffff;
  border: 1px solid #A6A6A6;
  border-radius: 4px;
}
.p-item-form {
  width: 100%;
  font-size: 1.6rem;
}
.p-item-form p {
  margin-bottom: 0.5em;
}

.p-item-mm {
  display: none;
}

.p-selected-department {
	margin-top: 12px;
	font-size: 1.4rem;
}

.p-recapcha-box{
  margin-bottom: 10px;
}

@media only screen and (max-width:768px){

.l-section-form {
  margin: -6.4vw auto 10.666vw;
}
.p-form-block {
  display: block;
  margin-bottom: 6.4vw;
}
.p-label-form {
  margin: 0 0 3.2vw;
  width: 100%;
  -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.c-icon-form {
  width: 12.666vw;
  height: 5.866vw;
  padding: 0.8vw 2.133vw;
  font-size: 3.733vw;
  line-height: 1;
  margin-left: 0.57em;
}
}

/* pleceholder */
.c-input-text::placeholder,
.c-textarea::placeholder {
  color: #a6a6a6;
}

/* テキスト */
.c-input-text {
  width: 100%;
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid #E3E3E3;
}
.c-input-text:focus {
  border: 1px solid var(--main-color);
}

/* セレクト */
.p-select-prefecture {
  padding: 12px 16px;
  width: 190px;
  height: 45px;
  border: 1px solid #E3E3E3;
  border-radius: 4px;
  background: url(../images/icon_select.svg) no-repeat right 16px center;
}
.c-item-select {
  position: relative;
}

/* ラジオボタン */
.radio-class label {
  display: block;
  margin-bottom: 10px;
}

.c-label-radio input[type="radio"] {
    visibility:hidden;
    width: 0;
    height: 0;
}
.p-radio-column {
  display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
  flex-flow: column;
}
.p-radio-column .c-label-radio {
  flex-shrink: 1;
  flex-grow: 1;
}
.p-radio-column .c-label-radio:not(:last-child) {
  margin-bottom: 0.8em;
}
.p-radio-row .c-label-radio {
  margin-bottom: 12px;
  display: inline-block;
  margin-right: 24px;
}
.p-radio-row .c-item-w100 {
  width: 103px;
  margin-right: 16px;
}
.c-label-radio {
  position: relative;
  padding-left: 26px;
}
.c-label-radio .c-check-icon {
    position: absolute;
    width: 18px;
    height: 18px;
    top: 2px;
    left: 0px;
    border-radius: 50%;
    border: 1px solid var(--main-color);
    background: #ffffff;
}
.c-label-radio input[type="radio"]:checked + .c-check-icon:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    border-radius: 50%;
    background: var(--main-color);
}
/* チェックボックス */
.c-label-checkbox input[type="checkbox"] {
    display: none;
}
.c-label-checkbox {
  position: relative;
  padding-left: 26px;
  margin-right:24px;
}
.c-label-checkbox .c-check-icon {
    position: absolute;
    width: 18px;
    height: 18px;
    top: 0;
    left: 0px;
    border-radius: 4px;
    border: 1px solid var(--main-color);
    background: #ffffff;
}
.c-label-checkbox input[type="checkbox"]:checked + .c-check-icon:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    border-radius: 4px;
    background: url(../images/icon_check.svg) var(--main-color) no-repeat;
    background-position: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
/* テキストエリア */
.c-textarea {
  padding: 12px 16px;
  width: 100%;
  height: 200px;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  
}
.p-block-submit .p-link-policy {
  color: #8D8D8D;
}
.c-link-policy {
  color: #8D8D8D;
  text-decoration: underline;
}
.c-link-policy:hover {
  color: #8D8D8D;
  text-decoration: none;
}
.c-link-policy:visited {
  color: #8D8D8D;
  text-decoration: underline;
}

@media only screen and (max-width:768px){

.p-select-prefecture {
  width: 100%;
}
.p-radio-row .c-label-radio {
    margin-bottom: 4.266vw;
    display: inline-block;
    margin-right: 0;
}
.p-radio-row .c-item-w100 {
    width: auto;
    margin-right: 0;
}
.c-label-checkbox {
  display: inline-block;
    margin-bottom: 4.266vw;
    margin-right: 0;
}
}

/* モーダルボタン */

.btn-open-modal__department {
  width: 110px;
  padding: 12px 0;
  color: var(--main-color);
  font-weight: bold;
  border: 1px solid var(--main-color);
  border-radius: 4px;
}
.btn-open-modal__department:hover {
  color: #fff;
  background: var(--main-color);
}


/* 電話で問い合わせ */

.p-cta-tel {
  margin: auto;
  width: 484px;
}
.c-phone {
  padding-left: 46px;
  font-size: 2.8rem;
  color: var(--main-color);
  background: url(../images/icon_freedial.svg) no-repeat left center;
}

@media only screen and (max-width:768px){
.p-cta-tel {
  margin: auto;
  width: 100%;
  flex-flow: column;
}
.p-contact-tel {
  text-align: center;
}
.c-phone {
  margin: 2.133vw auto 1.066vw;
  font-size: 6.4vw;
}
.c-phone a {
  text-decoration: none;
}
}


/*----------------------------------------------------------------------------
 フォームエラー
----------------------------------------------------------------------------*/

input.error,
select.error {
  border: 1px solid #FF4057 !important;
  background-color: #FFEAEC;
}
span.error {
  display: block;
  margin-top: 0.5em;
  color: #FF4057;
}
.p-message-error {
  margin: 16px auto 20px;
  padding: 12px 0;
  width: 484px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
  color: #FF4057;
  text-align: center;
  border: 1px solid #FF4057;
}

@media only screen and (max-width:768px){

.p-message-error {
  margin: 3.2vw auto 4.266vw;
  padding: 3.2vw 0;
  width: 100%;
  font-size: 4.266vw;
  border: 2px solid #FF4057;
}

}

/*----------------------------------------------------------------------------
 3つの安心
----------------------------------------------------------------------------*/

.l-section-selected.l-content-section {
  padding-top: 48px;
}
.p-list-selected {
  margin: 32px auto 0;
}
.c-list-selected-item {
  width: 200px;
}
.c-item-heading {
  margin: 12px auto 8px;
  width: 100%;
  height: 63px;
  line-height: 1.3;
}
.p-icon-circle {
  margin: auto;
  width: 102px;
  height: 102px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
  border-radius: 50%;
}
.c-item-description  {
  line-height: 1.3;
}
.p-icon-circle img {
  display: block;
}
.c-list-selected-item:nth-of-type(1) .p-icon-circle img {
  margin: 14px auto 0;
  width: 61px;
  height: auto;
}
.c-list-selected-item:nth-of-type(2) .p-icon-circle img {
  margin: 5px 0 0 8px;
  width: 53px;
  height: auto;
}
.c-list-selected-item:nth-of-type(3) .p-icon-circle img {
  width: 50px;
  height: auto;
}

@media only screen and (max-width:768px){

.l-section-selected.l-content-section {
  padding-top: 10.666vw;
}

.p-list-selected {
  margin: 6.4vw auto 0;
  flex-flow: column;
}
.c-list-selected-item {
    width: 100%;
}
.c-list-selected-item:not(:last-child) {
  margin-bottom: 12.8vw;
}
.c-item-heading {
    margin:  4.266vw auto 3.2vw;
    height: auto;
    line-height: 1.3;
}
.c-list-selected-item h4 {
  font-size: 5.333vw;
}
.c-list-selected-item:nth-of-type(1) .p-icon-circle img {
  margin: 14px auto 0;
  width: 58px;
  height: auto;
}

}

/*----------------------------------------------------------------------------
 完了画面
----------------------------------------------------------------------------*/

.p-content-complete {
  text-align: center;
}

.p-content-complete .c-section-heading {
  margin-bottom: 1.6rem;
}
.p-content-complete p {
  line-height: 1.7;
}

@media only screen and (max-width:768px){
  
.p-content-complete .c-section-heading {
  font-size: 5.333vw;
}

}


/*----------------------------------------------------------------------------
 ボタン
----------------------------------------------------------------------------*/
.p-btn-wrap{
  margin: 16px auto 20px;
  width: 484px;
  height: 84px;
}
.c-btn {
  padding: 1px;
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: bold;
  background: linear-gradient(83.95deg, #FF4057 0%, #FFB774 100%);
  box-shadow: 0px 4px 12px rgba(255, 87, 64, 0.3);
  border-radius: 42px;
}
.u-btn-inner {
  width: 100%;
  height: 100%;
  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;
  flex-flow: column;
  background: transparent;
  border-radius: 41px;
  transition:0.3s;
}
.c-btn .u-txt-note {
  display: block;
  margin-bottom: 4px;
  font-size: 1.4rem;
  font-weight: normal;
}
.c-btn .u-txt-btn {
  display: block;
  margin: 0 auto;
}
.c-btn:hover {
  box-shadow: none;
}
.c-btn:hover .u-btn-inner {
  background: #ffffff;
  border-radius: 41px;
}
 .c-btn:hover .u-btn-inner span {
  color: #FF4057;
  background: linear-gradient(83.95deg, #FF4057 0%, #FFB774 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
 }

/* トップへ戻るボタン */
.p-btn-back {
  margin: 32px auto 0;
  width: 320px;
  height: 56px;
}
.c-btn-back {
  position: relative;
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: bold;
  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;
  flex-flow: column;
  transition:0.3s;
  border-radius: 56px;
  border: 1px solid  var(--main-color);
  box-shadow: 0px 3px 10px rgba(33, 60, 157, 0.25);
}
.c-btn-back:before {
  content:"";
  width: 16px;
  height: 16px;
  background: url(../images/icon_textlink.svg) no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 18px;
  transform: rotate(180deg) translate(0 ,50%);
}
.c-btn-back:link {
  text-decoration: none;
}
.c-btn-back:hover {
  color: #ffffff;
  background-color: var(--main-color);
  box-shadow: none;
}
.c-btn-back:hover:before {
  content:"";
  width: 16px;
  height: 16px;
  background: url(../images/icon_textlink_white.svg) no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 18px;
  transform: rotate(180deg) translate(0 ,50%);
}

/* モーダル決定ボタン */

.p-btn-modal {
  margin: 32px auto 0;
  width: 260px;
  height: 48px;
}

.c-btn-modal {
  position: relative;
  width: 100%;
  height: 100%;
  color: var(--main-color);
  font-size: 1.6rem;
  font-weight: bold;
  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;
  flex-flow: column;
  transition:0.3s;
  border-radius: 56px;
  border: 1px solid  var(--main-color);
  cursor: pointer;
}
.c-btn-modal:hover {
	color: #ffffff;
  background: var(--main-color);
}


@media only screen and (max-width:768px){
.p-btn-wrap {
    margin: 16px auto 20px;
    width: 100%;
    height: 20.266vw;
}
.c-btn .u-txt-note {
  display: block;
  margin-bottom: 1.066vw;
  font-size: 3.2vw;
}

.p-btn-back{
  margin: 4.266vw auto 0;
  width: 100%;
  height: 14.933vw;
}

}


/*----------------------------------------------------------------------------
 MODAL
----------------------------------------------------------------------------*/

.p-modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  top: 0;
  left:0;
    z-index: 10000;
}
.p-container-modal {
  padding: 32px 40px;
  width: 790px;
  background: #ffffff;
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
    -webkit- transform: translate(-50% , -50%);
}
.p-container-modal.p-modal__department{
  padding: 40px 48px;
  width: 885px;
}

.c-heading-modal {
  margin-bottom: 12px;
  font-size: 2.4rem;
  color: #262626;
}
.p-modal__department .c-heading-modal {
	font-size: 2.0rem;
	color: var(--main-color);
}

/* 規約 */
.l-inner-modal {
	position: relative;
	padding: 32px 32px 1em;
	width: 100%;
	height: 364px;
	border: 1px solid #e3e3e3;
	overflow-y: scroll;
}
.l-inner-modal::-webkit-scrollbar {
-webkit-appearance: none;
width: 7px;
}
.l-inner-modal::-webkit-scrollbar-thumb {
border-radius: 4px;
background-color: #bcbcbc;
box-shadow: 0 0 1px rgba(255,255,255,.5);
}

/* 科目選択 */

.l-inner-modal-department .p-form-block {
  margin-bottom: 24px;
}

.l-inner-modal-department .p-form-block dt {
  margin-bottom: 8px;
  padding: 8px;
  background: #F3F7FF;
}
.l-inner-modal-department .p-form-block dd {
  padding: 0 8px;
}
.l-inner-modal-department .c-label-checkbox {
  width: 140px;
  margin: 8px 18px 8px 0;
}
.l-inner-modal-department .c-label-checkbox:nth-of-type(5n) {
  margin-right: 0;
}
#inputDepartment {
  appearance: auto;
  width: 100%;
  height: auto;
}


.btn-modal-close {
  width: 19px;
  height: 19px;
  background: url(../images/icon_close.svg) no-repeat;
  position: absolute;
  top: 20px;
  right: 20px;
}
.btn-modal-close {
  cursor: pointer;
}
.js-open-modal {
  cursor: pointer;
}

@media only screen and (max-width:768px){

.p-container-modal {
    padding: 8.533vw 5.333vw;
    width: 92vw;
}
.l-inner-modal {
	position: relative;
	padding: 5.333vw 5.333vw 1em;
	width: 100%;
	height: 81.333vw;
}
.c-heading-modal {
  margin-bottom: 4.266vw;
  font-size: 6.4vw;
}

.p-container-modal.p-modal__department{
    padding: 8.533vw 5.333vw;
    width: 92vw;
	height: 80vh;
	overflow-y: scroll; 
}
.l-inner-modal-department .p-form-block dt {
	padding: 0 2.133vw;
}
.l-inner-modal-department .c-label-checkbox {
	width: calc(26px + 5em);
	margin: 8px 0 8px 0;
}
.l-inner-modal-department .c-label-checkbox:not(:nth-of-type(2n)) {
	width: calc(26px + 9em);
	margin-right: 4.4vw;
}

}


/* モーダル内 科目選択 */

.l-inner-modal .p-form-block {
  margin-bottom: 24px;
}

.l-inner-modal .p-form-block dt {
  margin-bottom: 8px;
  padding: 8px;
  background: #F3F7FF;
}
.l-inner-modal .p-form-block dd {
  padding: 0 8px;
}
.l-inner-modal .c-label-checkbox {
  width: 140px;
  margin: 8px 18px 8px 0;
}
.l-inner-modal .c-label-checkbox:nth-of-type(5n) {
  margin-right: 0;
}
#inputDepartment {
  appearance: auto;
  width: 100%;
  height: auto;
}

/* モーダル内コンテンツ 規約 */

.l-inner-modal-content .h3 {
	margin-bottom: 0.8em;
	padding-left: 17px;
	font-size: 2.0rem;
	font-weight: bold;
	border-left: 3px solid var(--main-color);
}
.l-inner-modal-content .h3:not(:nth-of-type(1)) {
	margin-top: 32px;
}
.l-inner-modal-content .h4 {
	margin-bottom: 0.5em;
	font-size: 1.6rem;
	font-weight: bold;
	color: var(--main-color);
}
.l-inner-modal-content p {
	margin-bottom: 1.2em;
	font-size: 1.4rem;
	line-height: 1.7;
}
.list {
	font-size: 1.4rem;
	line-height: 1.7;
}
.list-ul > li, .list-ol > li {
    margin-left: 2rem;
    margin-bottom: 0.6rem;
}
.list-ul > li {
    list-style: disc;
    list-style-position: outside;
}
.list-ol > li {
    list-style: decimal;
    list-style-position: outside;
}
.list.lower-alpha {
    margin-bottom: 1em;
}
.lower-alpha li {
    list-style: lower-alpha;
    margin-left: 2rem;
}

.table { 
	width:100%;
	margin:2em 0; 
}
.table,
.table tr,
.table th,
.table td {
	border: 1px solid #e3e3e3;
	border-collapse: collapse;
}
.table th {
	padding: 12px 16px;
	font-size: 1.4rem;
	line-height: 1.3;
	font-weight: bold;
	text-align: center;
	background: #f8f8f8;
}
.table td {
	padding: 12px 16px;
	font-size: 1.4rem;
	line-height: 1.7;
}

.box-border {
	margin: 1em 0;
	padding: 20px 0 0;
	text-align: center;
	border: 1px solid #e3e3e3;
}

@media only screen and (max-width:768px){
.l-inner-modal-content .h3 {
	padding-left: 4.266vw;
	font-size: 4.266vw;
}
.l-inner-modal-content .h3:not(:nth-of-type(1)) {
	margin-top: 8.533vw;
}
.l-inner-modal-content .h4 {
	font-size: 4.266vw;
}
.l-inner-modal-content p {
	font-size: 3.733vw;
}
.list {
	font-size: 3.733vw;
}
.table td {
    padding: 3.2vw 4.266vw;
	font-size: 3.733vw;
}
.box-border {
	padding: 5.333vw 5.333vw 0;
}
.u-nowrap {
	white-space: nowrap;
}
}




/*----------------------------------------------------------------------------
 ACCORDION
----------------------------------------------------------------------------*/

.js-toggle-head {
  position: relative;
  cursor: pointer;
}
.js-toggle-head:hover {
  opacity: 1;
}
.js-toggle-head span {
  padding-right: 16px;
  position: relative;
}
.js-toggle-head span::before {
    display: block;
    content: '';
    position: absolute;
    width: 2px;
    height: 12px;
    right: 5px;
    top: 50%;
    border-radius: 1px;
    transition-duration: 0.2s;
  transform: translateY(-50%);
    -webkit- transform: translateY(-50%);
    background-color: var(--main-color);
}
.js-toggle-head span::after {
  display: block;
  content: '';
  position: absolute;
  width: 12px;
  height: 2px;
  right: 0;
  top: 50%;
  border-radius: 1px;
  transform: translateY(-50%);
    -webkit- transform: translateY(-50%);
    background-color: var(--main-color);
}
.is-open .js-toggle-head span::before {
    -webkit-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
    top: 50%;
}
.js-toggle-body {
  display: none;
}

.p-head-toggle {
  margin-bottom: 32px;
  padding: 8px 0;
  border: 1px solid var(--main-color);
}
.p-foot-toggle {
  display: none;
  margin-bottom: 32px;
  padding: 8px 0;
  border: 1px solid var(--main-color);
}
.p-block-option.is-open .p-head-toggle {
  display:none;
}
.p-block-option.is-open .p-foot-toggle {
  display: block;
}









