@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");

/*------------------------------------------
  Base Layout
------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS PGothic", sans-serif;
  font-size: 1.6em;
  background: #fff;
  color: #243644;
  line-height: 1.8;
}
.mincho {
  font-family: "Noto Serif JP", serif;
}
.oswald {
  font-family: "Oswald", sans-serif;
}
* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
}
a.blue {
  color: #0000ff;
  text-decoration: underline;
}
a.blue:hover {
  text-decoration: none;
}

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

.wrapper {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* テンプレートによって追加・変更 */

.content {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  margin-top: 100px;
}

.main-bg {
  position: relative;
}
.main-bg::after {
  position: absolute;
  content: "";
  bottom: -140px;
  transform: translateX(-50%);
  left: 50%;
  width: 1920px;
  height: 38vw;
  background: url(../images/top/main-bg.png) center bottom / cover no-repeat;
  z-index: 1;
}

@media only screen and (min-width: 1921px) {
  .main-bg::after {
    width: 100%;
    height: 732px;
  }
}

.disp-pc {
  display: block;
}
.disp-sp {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .content {
    margin-top: 70px;
  }
}
@media only screen and (max-width: 600px) {
  .disp-pc {
    display: none;
  }
  .disp-sp {
    display: block;
  }
  .main-bg::after {
    height: 375px;
  }
}

/*------------------------------------------
  Clearfix
------------------------------------------*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

/*------------------------------------------
  Pager
------------------------------------------*/
.pager {
  padding-top: 40px;
}
.pager .pagination {
  text-align: center;
  line-height: 0;
}
.pager .pagination li {
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  text-align: center;
  position: relative;
  border-radius: 2px;
}
.pager .pagination li a {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #000;
}
.pager .pagination li a span {
  display: table-cell;
  vertical-align: middle;
  transform: none;
}
.pager .pagination li a:hover {
  color: #fff;
  background: #000;
}
.pager .pagination li .active {
  color: #fff;
  background: #000;
}
@media only screen and (max-width: 600px) {
  .pager .pagination li {
    display: none;
  }
  .pager .pagination .pre,
  .pager .pagination .next {
    display: inline-block;
    width: 40%;
    height: 50px;
    text-align: center;
  }
  .pager .pagination .pre a,
  .pager .pagination .next a {
    width: 100%;
    text-align: center;
  }
  .pager .pagination .pre span:after {
    content: "　前の10件へ";
  }
  .pager .pagination .next span:before {
    content: " 次の10件へ　";
  }
}

/*------------------------------------------
  Parts
------------------------------------------*/
.btn {
  display: block;
}
/* Button Type01 */
.btn-type01 {
  text-align: right;
  font-size: 22px;
  padding-right: 100px;
  position: relative;
  line-height: 1;
}
.btn-type01:after {
  content: "";
  width: 83px;
  height: 10px;
  display: block;
  background: url(../images/common/icon_arrow_large.png) no-repeat center /
    cover;
  position: absolute;
  right: 0;
  bottom: 7px;
}
@media only screen and (max-width: 600px) {
  .btn-type01 {
    font-size: 16px;
    padding-right: 70px;
  }
  .btn-type01:after {
    width: 60px;
    height: 8px;
    bottom: 5px;
  }
}

/* Button Type02 */
.btn-type02 {
  width: 175px;
  height: 40px;
  line-height: 30px;
  display: block;
  text-align: center;
  border: 1px solid #1b2f62;
  margin: auto;
  padding: 3px;
}
.btn-type02 span {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #1b2f62;
  transition: 0.3s;
}
.btn-type02 span:hover {
  color: #fff;
  background: #1b2f62;
}

/* List Type01（お知らせ） */
.list-type01 {
  max-width: 745px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.list-type01 li {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 0.5rem;
}
.list-type01 a {
  display: block;
  position: relative;
}
.list-type01 a:after {
  content: "";
  width: 47px;
  height: 14px;
  display: block;
  background: url(../images/common/icon_arrow_small.png) no-repeat center /
    cover;
  position: absolute;
  right: 0;
  bottom: 10px;
}
.list-type01 .post-time {
  display: block;
  font-size: 18px;
}
.list-type01 .post-title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  display: block;
  padding-right: 5rem;
}
@media only screen and (max-width: 600px) {
  .list-type01 .post-time {
    font-size: 14px;
  }
  .list-type01 .post-title {
    font-size: 16px;
  }
}

/* List Type02（会社概要等） */
.list-type02 {
  max-width: 760px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
.list-type02 dl {
  border-bottom: 1px solid #d9d9d9;
  font-size: 18px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.list-type02 dt {
  font-weight: 600;
  width: 120px;
  position: relative;
  padding: 0.5rem;
}
.list-type02 dt:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #0078e8;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 2;
}
.list-type02 dd {
  width: calc(100% - 120px);
  padding: 0.5rem 2rem;
}
@media only screen and (max-width: 600px) {
  .list-type02 {
    gap: 20px 0;
  }
  .list-type02 dl {
    font-size: 16px;
  }
  .list-type02 dt {
    font-size: 14px;
    width: 75px;
  }
  .list-type02 dd {
    width: calc(100% - 75px);
    padding: 0.5rem 0 0.5rem 2rem;
  }
}

/* List Type03（会社概要） */
.list-type03 {
  max-width: 824px;
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin-top: 42px;
  font-size: 18px;
}
.list-type03 dl {
  display: grid;
  grid-template-columns: 191px 1fr;
  gap: 7px 5px;
}
.list-type03 dt,
.list-type03 dd {
  display: flex;
  align-items: flex-start;
  padding: 24px;
}
.list-type03 dl:nth-child(odd) dt,
.list-type03 dl:nth-child(odd) dd {
  background: #f6f2f2;
}
.list-type03 dl:nth-child(even) dt,
.list-type03 dl:nth-child(even) dd {
  background: #f1f8ff;
}
.list-type03 dd {
}
@media only screen and (max-width: 1024px) {
  .list-type03 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
	.list-type03 {
		font-size: 14px;

			}
  .list-type03 dl {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 5px 5px;
  }
  .list-type03 dt,
  .list-type03 dd {
    padding: 17px 8px;
  }
}

/*------------------------------------------
  Form
------------------------------------------*/
.form-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 3rem;
}
.form-block .required {
  display: inline-block;
  height: 17px;
  line-height: 15px;
  border-radius: 8px;
  background: #014C9C;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  padding: 0 10px;
  margin-left: 1rem;
}
.form-block dl {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-block dt {
  width: 100%;
}
.form-block dd {
  width: 100%;
}
.form-block input[type="text"],
.form-block textarea {
  background: #fff;
  border-radius: 2px;
  width: 100%;
  padding: 8px 10px;
  box-sizing: border-box;
  border: 1px solid #a6a6a6;
}
.form-block .privacy {
  text-align: center;
  margin: 3rem 0;
}
.form-block .submit {
  width: 175px;
  height: 40px;
  line-height: 30px;
  display: block;
  text-align: center;
  border: 1px solid #1b2f62;
  margin: auto;
  padding: 3px;
}
.form-block .submit input {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #1b2f62;
  transition: 0.3s;
}
.form-block .submit input:hover {
  color: #fff;
  background: #1b2f62;
}
@media only screen and (max-width: 600px) {
}

/*------------------------------------------
  Header
------------------------------------------*/
.cmn-header {
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 100px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
}
.cmn-header .inner {
  max-width: 1280px;
  width: 97%;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.cmn-header .gnav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}
.cmn-header .gnav a {
  font-size: 18px;
  color: #1b2f62;
}
.cmn-header .gnav .last {
  color: #fff;
  background: #243644;
  display: block;
  width: 135px;
  height: 35px;
  line-height: 33px;
  text-align: center;
  border: 1px solid #243644;
  transition: 0.3s;
}
.cmn-header .gnav .last:hover {
  color: #243644;
  background: #fff;
}
.cmn-header .gnav .non-pc {
  display: none;
}

/* Trigger, Modal */
.menu-trigger {
  display: none;
  font-size: 12px;
  color: #0078e8;
  border-top: 1px solid #0078e8;
  border-bottom: 1px solid #0078e8;
}

@media only screen and (max-width: 1200px) {
  .cmn-header .gnav .last {
    width: 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .cmn-header {
    height: 70px;
  }
  .cmn-header .inner {
    width: 95%;
  }
  .cmn-header .logo {
    width: 235px;
    order: 1;
  }
  .cmn-header .gnav {
    order: 3;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: -99;
    transition: 0.3s;
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    top: 70px;
    left: 0;
    display: none;
    overflow: scroll;
  }
  .cmn-header .gnav.active {
    height: calc(100vh - 70px);
    opacity: 1;
    z-index: 1;
    visibility: visible;
  }
  .cmn-header .gnav li {
    border-top: 1px solid #d9d9d9;
  }
  .cmn-header .gnav a {
    display: block;
    font-size: 30px;
    line-height: 1;
    padding: 2rem;
    box-sizing: border-box;
    position: relative;
  }
  .cmn-header .gnav a:after {
    content: "";
    width: 74px;
    height: 12px;
    display: block;
    background: url(../images/common/icon_arrow_large.png) no-repeat center /
      cover;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .cmn-header .gnav .non-pc {
    display: block;
  }
  .cmn-header .gnav .non-pc a {
    font-size: 16px;
    color: #727272;
  }
  .cmn-header .gnav .non-pc a:after {
    content: none;
  }
  .cmn-header .gnav .non-sp {
    display: none;
  }
  .menu-trigger {
    display: block;
    order: 2;
  }
}
@media only screen and (max-width: 600px) {
}

/*------------------------------------------
  Footer
------------------------------------------*/
.cmn-footer {
  margin-top: 15rem;
}
.cmn-footer .info {
  background: #a1dcff;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  padding: 3rem 0;
}
.cmn-footer .info .inner {
  max-width: 1080px;
  width: 95%;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.cmn-footer .info .title {
  font-size: 44px;
  font-weight: 500;
  color: #243644;
  line-height: 1;
}
.cmn-footer .info .text {
  font-size: 18px;
  line-height: 1.5;
}
.cmn-footer .info .flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.cmn-footer .info .left {
  line-height: 1;
}
.cmn-footer .info .left span {
  font-size: 30px;
}
.cmn-footer .info .left a {
  font-size: 44px;
  font-weight: bold;
}
.cmn-footer .info .right a {
  width: 320px;
  height: 75px;
  line-height: 75px;
  display: block;
  text-align: center;
  color: #243644;
  background: #fff;
  border: 1px solid #fff;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s;
}
.cmn-footer .info .right a:hover {
  background: #243644;
  color: #fff;
	border-color: #243644;
}
.cmn-footer .copy {
  text-align: center;
  color: #fff;
  font-size: 14px;
  background: #243644;
  padding: 5px 0;
}
@media only screen and (max-width: 1024px) {
  .cmn-footer .info .flex {
    flex-direction: column;
    gap: 30px 0;
  }
}
@media only screen and (max-width: 600px) {
  .cmn-footer .info {
    padding: 3rem 0 5rem;
  }
  .cmn-footer .info .text {
    font-size: 16px;
  }
  .cmn-footer .info .left span {
    font-size: 20px;
  }
  .cmn-footer .info .left a {
    font-size: 34px;
  }
}
