@charset "UTF-8";


/*======*/
/* 共通 */
/*======*/
/* PC/SP出し分け
------------------------------ */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

/* レイアウト
-----------------------------------*/
body {
  height: 100%;
}

main {
  margin-top: 0;
}

section .contents {
  max-width: 1008px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 767px) {
  section .contents {
    padding: 0 24px;
  }
}

section .contents p,
section .contents ul,
section .contents ol {
  margin-bottom: 1em;
}

/* フォーム
-----------------------------------*/
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
select,
textarea {
  width: 100%;
  padding: 8px;
  border: 2px solid #1C1F87;
  border-radius: 5px;
  font-size: 16px;
}

@media (max-width: 767px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  textarea {
    border-radius: 3px;
  }
}

input[type=date],
select {
  max-width: 100%;
  padding: 8px;
  font-size: 16px;
}

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

@media (max-width: 767px) {
  input[type=submit],
  input[type=button],
  button {
    font-size: 14px;
  }
}

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


/* タイトル
-----------------------------------*/
.title-area {
  padding: 64px 0;
  background-color: #CECECE;
}
@media (max-width: 767px) {
  .title-area {
    padding: 48px 0;
  }
}
.title-area .heading-title {
  margin-bottom: 0;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .title-area .heading-title {
    font-size: 28px;
  }
}

.heading01 {
  margin: 128px 0 64px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .heading01 {
    margin: 80px 0 40px;
    font-size: 28px;
  }
}

.heading02 {
  margin: 64px 0 24px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .heading02 {
    margin: 32px 0 16px;
    font-size: 18px;
  }
}

.heading03 {
  margin: 48px 0 16px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .heading03 {
    margin: 24px 0 16px;
    font-size: 18px;
  }
}

.heading04 {
  margin: 32px 0 16px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .heading04 {
    margin: 24px 0 16px;
    font-size: 16px;
  }
}


/* リンクテキスト（リンク共通の記載があれば）
-----------------------------------*/
.link-txt {
  text-decoration: underline;
}

/* リンクボタン
-----------------------------------*/
.com-bt {
  display: inline-block;
  padding: 16px 48px;
  border: 1px solid #CCC;
  background-color: #FFF;
  line-height: 1;
  text-align: center;
  vertical-align: top;
  transition: 0.5s all;
}
.com-bt:hover {
  background-color: #EEE;
  text-decoration: none;
  color: #333;
}
@media (max-width: 767px) {
  .com-bt {
    display: block;
    width: 100%;
    padding: 16px 32px;
  }
}
.com-bt.next {
  position: relative;
}
.com-bt.next::after {
  content: "";
  position: absolute;
  display: block;
  right: 16px;
  top: 50%;
  margin-top: -4px;
  border-color: #333;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 8px;
  vertical-align: middle;
  width: 8px;
  transform: rotate(-45deg);
}
.com-bt.prev {
  position: relative;
}
.com-bt.prev::before {
  content: "";
  position: absolute;
  display: block;
  left: 16px;
  top: 50%;
  margin-top: -4px;
  border-color: #333;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 8px;
  vertical-align: middle;
  width: 8px;
  transform: rotate(135deg);
}

input[type=submit].com-bt,
input[type=button].com-bt,
button.com-bt {
  border: 1px solid #CCC;
  background-color: #FFF;
  line-height: 1;
  cursor: pointer;
}
input[type=submit].com-bt:hover,
input[type=button].com-bt:hover,
button.com-bt:hover {
  background-color: #EEE;
  color: #333;
}
@media (max-width: 767px) {
  input[type=submit].com-bt,
input[type=button].com-bt,
button.com-bt {
    font-size: 14px;
  }
}

/*============*/
/* 共通・汎用 */
/*============*/
/* 段落
-----------------------------------*/
/* ぶら下げインデント */
.indent {
  margin-left: 1em;
  text-indent: -1em;
}

/* 汎用カラム
-----------------------------------*/
.row:after {
  content: "";
  clear: both;
  display: block;
}

.multicolumn,
.multilist {
  overflow: hidden !important;
}

.multicolumn-left {
  float: left;
}

.multicolumn-right {
  float: right;
}

.multilist li {
  float: left;
}

/* 横並びリスト
-----------------------------------*/
.list-col2,
.list-col3,
.list-col4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.list-col2 li {
  width: 48%;
  margin-bottom: 24px;
}
.list-col2 li:nth-child(even) {
  margin-left: 4%;
}

.list-col3 li {
  width: 32%;
  margin-bottom: 16px;
  margin-right: 2%;
}
.list-col3 li:nth-child(3n) {
  margin-right: 0;
}

.list-col4 li {
  width: 24%;
  margin-bottom: 16px;
  margin-right: 1.333%;
}
.list-col4 li:nth-child(4n) {
  margin-right: 0;
}


/* リスト、アイコン
-----------------------------------*/
/* リスト（デフォルト） */
.list-df {
  margin-left: 23px;
  list-style: disc;
}

/* リスト（ドット） */
.list-dot li {
  padding-left: 1em;
}

.list-dot li:before {
  content: "・";
  margin-left: -1em;
}

/* リスト（数字） */
.list-num li {
  margin-left: 30px;
}

/* テーブル
-----------------------------------*/
/* 幅 */
col.colw05 {
  width: 5%;
}

col.colw10 {
  width: 10%;
}

col.colw15 {
  width: 15%;
}

col.colw20 {
  width: 20%;
}

col.colw25 {
  width: 25%;
}

col.colw30 {
  width: 30%;
}

col.colw35 {
  width: 35%;
}

col.colw40 {
  width: 40%;
}

col.colw45 {
  width: 45%;
}

col.colw50 {
  width: 50%;
}

/* テーブル */
.table {
  width: 100%;
  margin-bottom: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
.table th {
  padding: 16px;
  border: solid 1px #333;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .table th {
    padding: 8px 4px;
  }
}
.table td {
  padding: 16px;
  border: solid 1px #333;
}
@media (max-width: 767px) {
  .table td {
    padding: 8px 4px;
  }
}


/*========*/
/* ヘッダ */
/*========*/

header {
  display: flex;
  justify-content: center;
  height: 72px;
}

header .h-logo {
  align-content: center;
}

@media (max-width: 767px) {
  
  header {
    height: 52px;
  }

  header .h-logo {
    width: 135px;
  }
}


/*========*/
/* フッタ */
/*========*/

footer {
  padding: 16px;
  text-align: center;
}

footer .copyright {
  font-size: 14px;
}

@media (max-width: 767px) {

  footer {
    padding: 12px 16px;
  }

  footer .copyright {
    font-size: 12px;
  }
}


/*======*/
/* news */
/*======*/




/*=======*/
/* works */
/*=======*/

.works .com-table {
  width: 100%;
  margin-bottom: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}

.works .com-table th {
  width: calc(100% / 3);
  padding: 16px;
  border-right: 4px solid #FFF;
  background: #1C1F87;
  color: #FFF;
  font-weight: bold;
  text-align: center;
}

.works .com-table th:last-child {
  border-right: none;
}

.works .com-table td {
  padding: 16px;
  border-right: 4px solid #FFF;
  background: #EFF0F9;
  text-align: center;
}

.works .com-table tbody tr:nth-of-type(odd) td {
  background: #D6D9F2;
}

.works .com-table tbody td {
  border-top: 4px solid #FFF;
}

.works .com-table tbody td:last-child {
  border-right: none;
}

.works .com-heading01 {
  position: relative;
  margin: 80px 0 40px;
  padding-bottom: 16px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}

.works .com-bt01 {
  display: block;
  max-width: 240px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border-radius: 5px;
  background: #999;
  color: #FFF !important;
  line-height: 48px;
  transition: .5s all;
}

.works .com-bt01.blue {
  background: #1C1F87;
}

.works button.com-bt01 {
  font-weight: bold;
}

.works .com-bt01.red {
  background: #FF2116;
}

.works .com-bt01:hover {
  opacity: .7;
  text-decoration: none;
}

.works .com-bt01 span {
  display: inline-block;
  position: relative;
  padding-left: 28px;
}

.works .com-bt01 span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.works .com-bt01 span.calc::before {
    width: 17px;
    height: 24px;
    background: url(/works/images/btn_ic03.svg) no-repeat;
    background-size: 100% auto;
}

.works .com-bt01 span.print::before {
  width: 18px;
  height: 24px;
  background: url(/works/images/btn_ic01.svg) no-repeat;
  background-size: 100% auto;
}

.works .com-bt01 span.pdf::before {
  width: 20px;
  height: 24px;
  background: url(/works/images/btn_ic02.svg) no-repeat;
  background-size: 100% auto;
}

.works .bg {
  position: relative;
  padding: 50px 0;
}

.works .note-txt {
  max-width: max-content;
  margin: 0 auto;
  padding: 8px 16px;
  border: 2px solid #FF5773;
  border-radius: 5px;
  background: #FFF0F6;
}

.works .note-txt span {
  position: relative;
  display: inline-block;
  padding-left: 28px;
}

.works .note-txt span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(/works/images/link_ic01.svg) no-repeat;
  background-size: 100% auto;
}

.works .bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #F2F4F4;
}

.works .com-heading01::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 0;
  transform: translateX(-50%);
  width: 134px;
  height: 2px;
  background: #1C1F87;
}

.works .com-heading01::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;
  width: calc(134px / 2);
  height: 2px;
  background: #FBDA95;
}

.works .item-list {
  max-width: 680px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
}

.works .item-list li {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 16px;
}

.works .item-list li:nth-of-type(3n) {
  margin-right: 0;
}

.works .item-list li dl {
  display: flex;
}

.works .item-list li dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto;
}

.works .item-list li dl dt {
  width: 80px;
  padding-right: 8px;
  text-align: right;
}

.works .item-list li dl dd {
  width: calc(100% - 80px);
}

.works .main-sec { 
  display: flex;
  height: 240px;
  background: url(/works/images/title_bg01.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.works .main-sec .contents {
  align-content: center;
}

.works .main-sec .h-ttl {
  position: relative;
  margin: 0 0 32px;
  padding-bottom: 32px;
  color: #F7B52C;
  font-size: 44px;
  font-weight: bold;
  letter-spacing: .1em;
  text-align: center;
  line-height: 1.2;
}

.works .main-sec .h-ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: #FFF;
}

.works .main-sec p {
  margin-bottom: 0;
  color: #FFF;
  font-size: 18px;
  text-align: center;
}

.works .form01 {
  margin-bottom: 40px;
}

.works .form01 .item-list {
  margin: 0 auto 40px;
}

.works .form01 .item-list:nth-of-type(1) {
  margin-bottom: 24px;
}

.works .form01 .bt {
  margin-bottom: 0;
}

.works .form02 {
  margin-bottom: 120px;
}

.works .form02 .note-area {
  margin-bottom: 40px;
}

.works .form02 .note-area .note-txt {
  margin-bottom: 20px;
}

.works .form02 .note-area .txt {
  text-align: center;
}

.works .form02 .note-area .txt a {
  text-decoration: underline;
  color: #FF5773;
}

.works .form02 .note-area .txt a:hover {
  text-decoration: none;
}

.works .form02 dl {
  margin: 0 auto 24px;
}

.works .form02 #img-area {
  width: 100%;
  display: block;
  max-width: 400px;
  margin: 24px auto 40px;
  border: 1px solid #CECECE;
}

.works .form02 .com-table {
  margin-bottom: 40px;
}

.works .form02 .list-btn {
  display: flex;
  justify-content: space-between;
  max-width: 512px;
  margin: 0 auto;
}

.works .form02 .list-btn li {
  width: 46.875%;
}

.works .form03 {
  margin-bottom: 176px;
}

.works .form03 .mwform-radio-field .mwform-radio-field-text {
  font-size: 18px;
  font-weight: bold;
}

.works .form03 dl {
  max-width: 480px;
  margin: 0 auto 32px;
}

.works .form03 dl dt {
  margin-bottom: 8px;
}

.works .form03 dl dd {
  margin-bottom: 24px;
}

.works .form03 dl dd:last-child {
  margin-bottom: 0;
}

.works .form03 .list-btn {
  display: flex;
  justify-content: center;
  gap: 8px 8px;
  max-width: 512px;
  margin: 0 auto;
}

.works .form03 .list-btn li .com-bt01 {
  width: 200px;
}

@media (max-width: 767px) {

  .works .com-table {
    font-size: 12px;
  }

  .works .com-table th {
    width: 82px;
    padding: 16px 2px;
  }

  .works .com-table td {
    padding: 16px 2px;
  }

  .works .com-table th:first-child {
    width: 100px;
  }
  
  .works .com-table tbody tr:nth-of-type(odd) td {
    background: #D6D9F2;
  }
  
  .works .com-table tbody td {
    border-top: 4px solid #FFF;
  }
  
  .works .com-table tbody td:last-child {
    border-right: none;
  }

  .works .bg {
    padding: 40px 0;
  }

  .works .note-txt {
    border-radius: 3px;
  }

  .works .note-txt span {
    padding-left: 24px;
  }

  .works .note-txt span::before {
    width: 17px;
    height: 17px;
  }

  .works .com-bt01 {
    max-width: 210px;
    border-radius: 3px;
  }

  .works .com-bt01 span {
    padding-left: 24px;
  }

  .works .com-bt01 span.calc::before {
    width: 15px;
    height: 22px;
  }

  .works .com-bt01 span.print::before {
    width: 16px;
    height: 22px;
  }

  .works .com-bt01 span.pdf::before {
    width: 17px;
    height: 22px;
  }

  .works .com-heading01 {
    margin: 60px 0 32px;
    padding-bottom: 15px;
    font-size: 20px;
  }

  .works .com-heading01::before {
    width: 117px;
  }

  .works .com-heading01::after {
    width: calc(117px / 2);
  }

  .works .item-list {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .works .item-list li {
    width: 45.223%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .works .item-list li dl {
    display: block;
  }

  .works .item-list li dl dt {
    width: 100%;
    margin-bottom: 8px;
    padding-right: 0;
    text-align: left;
  }

  .works .item-list li dl dd {
    width: 100%;
  }

  .works .main-sec {
    height: 200px;
    background: url(/works/images/title_bg01_sp.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }

  .works .main-sec .h-ttl {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 28px;
  }

  .works .main-sec p {
    font-size: 14px;
  }

  .works .form01 .item-list {
    margin-bottom: 12px;
  }

  .works .form01 .item-list:nth-of-type(1) {
    margin-bottom: 0;
  }

  .works .form02 {
    margin-bottom: 60px;
  }

  .works .form02 .note-area .note-txt {
    margin-bottom: 16px;
  }

  .works .form02 .item-list li {
    width: 29.253%;
    margin-bottom: 16px;
  }

  .works .form02 .com-table {
    margin-bottom: 32px;
  }

  .works .form02 .list-btn {
    display: block;
  }

  .works .form02 .list-btn li {
    width: 100%;
    margin-bottom: 16px;
  }

  .works .form02 .list-btn:last-child {
    margin-bottom: 0;
  }

  .works .form03 {
    margin-bottom: 80px;
  }

   .works .form03 .list-btn {
    display: block;
  }

  .works .form03 .list-btn li {
    width: 100%;
    margin-bottom: 16px;
  }

}


/* 印刷用 */
@media print {
  header, footer {
    display: none;
  }

  .works .main-sec,
  .works .form01,
  .works .form03 {
    display: none;
  }

  .works .form02 .note-area,
  .works .form02 .item-list,
  .works .form02 #img-area,
  .works .form02 .bt {
    display: none;
  }
}