/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
Basic
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
*{
	min-width: 0;
	min-height: 0;
}
img {
	width: 100%;
	height: auto;
}
a {
	display: block;
}
a:hover {
	opacity: 0.7;
}
.pc {
  display: block;
}
.sp {
  display: none;
}

html {
  font-size: 16px;
}

@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
}

@media screen and (max-width: 575px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

@font-face {
	font-family: 'Sawarabi Gothic';
	src: url("../font/SawarabiGothic-Regular.ttf");
}

body {
  /* font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji; */
  -webkit-font-smoothing: antialiased;
  font-family: 'Sawarabi Gothic';
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: #5b5b5b;
  /* height: 10000px; */
}

/* SPメニュー開いたとき背景スクロール禁止 */
body.fixed {
  height: 100%;
  overflow: hidden;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.3;
  color: inherit;
}
@media (max-width: 1199px) {
  h4 {
    font-size: 1.625rem;
  }
  h5 {
    font-size: 1.125rem;
  }
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
header
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
header {
  /* 追従禁止したいときは↓をコメントアウト */
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  display: block;
  /* transition: .8s; */
  background-color: #fff;
  padding: 0 1.2rem;
}
header.fixed {
  box-shadow: 0 3px 7px 0 rgb(0 0 0 / 7%);
}
.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header__logo {
  width: 170px;
  height: auto;
}
@media (max-width: 1069px) {
  /* PC用のヘッダーからSPヘッダーに切り替わる値(max-width: 1069px) */
  header {
    box-shadow: 0 3px 7px 0 rgb(0 0 0 / 7%);
  }
  .header__inner {
    max-width: none;
    width: 100%;
    height: 60px;
    justify-content: flex-start;
  }
  .header__logo {
    width: 180px;
    height: auto;
    order: 2;
    margin-left: 15px;
  }
}

/* pcnav
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
.pcnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-left: 100px;
}
.pcnav__list {
  margin-left: 40px;
  padding: 28px 15px;
}
.pcnav__list:first-child {
  margin-left: 0;
}
.pcnav__list__icon {
  position: relative;
}
.pcnav__list__icon::after {
  position: absolute;
  top: 50%;
  right: -12px;
  content: "";
  font-family: dg1icons;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/common/common-arrows.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 9px;
  height: 6px;
}
.pcnav__list__item {
  padding: 15px 0;
  width: 300px;
  box-shadow: 0 0 10px 3px rgb(0 0 0 / 5%);
  position: absolute;
  background-color: #fff;
  top: 110%;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease;
  text-align: left;
  border-bottom: 2px solid #5b5b5b;
  left: -20px;
}
.pcnav__list:hover .pcnav__list__item {
  top: 100%;
  visibility: visible;
  z-index: 2;
  opacity: 1;
}
.pcnav__list__item a {
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: none;
  font-size: 15px;
  padding: 11px 25px;
}
.pcnav__list a.active {
  font-weight: bold;
}
@media screen and (max-width: 1290px) {
  .pcnav {
    margin-left: 40px;
  }
  .pcnav__list {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1153px) {
  .pcnav {
    margin-left: 0;
  }
}
@media screen and (max-width: 1069px) {
  .pcnav {
    display: none;
  }
}

/* spnav
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
  .spnav {
    display: none;
  }
@media screen and (max-width: 1069px) {

  .spnav {
    display: block;
  }
  /* オーバーレイ */
  .spnav__menu__bg {
		width: 100%;
		height: 100%;
		position: fixed;
		z-index: 999;
		background-color: rgba(51, 51, 51, 0.5);
		display: none;
		top: 0;
		left: 0;
	}
  /* オープンボタン */
  .spnav__openbtn {
    display: block;
    width: 16px;
    height: auto;
    cursor: pointer;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /* クローズボタン */
  .spnav__closebtn {
    display: block;
    padding: 5px;
    width: 27px;
    cursor: pointer;
    position: fixed;
    top: 2%;
    right: 4.6%;
    text-align: center;
  }
  /* メニュー */
	.spnav__menu__nav {
		width: 300px;
		height: 100%;
		transition: all 0.2s;
		transform: translate(-300px);
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1000;
		background-color: #FFF;
		overflow-x: hidden;
		overflow-y: auto;
	}
	.spnav__menu__nav__list {
    display: block;
    position: relative;
    margin-top: 55px;
	}
	.spnav__menu__nav__list__item {
		height: auto;
		position: relative;
    padding: 0 20px;
	}
  .spnav__menu__nav__list__item:first-child{
    border-top: 1px solid #f7f7f7;
  }
  .spnav__menu__nav__list__item:last-child{
    border-bottom: 1px solid #f7f7f7;
  }
	.spnav__menu__nav__list__item a {
		display: block;
    font-weight: 600;
    border-top: 1px solid#f7f7f7;
    padding: 10px 0;
    font-size: 14px;
    opacity: 1;
	}
  .spnav__menu__nav__list__item a.label {
    border-top: 0;
    position: relative;
	}
  .spnav__menu__nav__list__item .label::after {
    position: absolute;
    content: "";
    background-image: url(../img/common/common-arrows.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 11px;
    height: 11px;
    top: 40%;
    right: 0;
    transform: rotate( -90deg );
  }
  .spnav__menu__nav__list__item .label.open::after {
    transform: rotate(0deg );
  }

	/* 2階層目 */
	.level__list {
		display: none;
	}
	.level__list {
		display: none;
		position: relative;
		padding: 0;
		z-index: 1001;
	}
	.level__list li a {
		padding-left: 10px;
	}
	.spnav__menu__nav.open {
		transform: translate(0);
	}
	.spnav__openbtn {
		right: auto;
		left: 32px;
	}
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
  フェードイン左から右に
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
.fade {
  opacity: 0;
  visibility: hidden;
  transform: translatex(-10%);
  transition: opacity 0.6s, visibility 1s, transform 0.5s;
}
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
  footer
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
footer {
  background-color: #eee;
  font-size: 14px;
  line-height: 21px;
  /* font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji; */
}
.footer__inner {
  display: flex;
  justify-content: flex-start;
  padding: 2.7rem 3.5rem;
}
.footer__info__logo {
  width: 150px;
  margin-bottom: 17px;
}
.footer__info__logo a:hover {
  opacity: 1;
}
.footer__link {
  margin-left: 115px;
}
.footer__link__title {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
}
.footer__sitemap {
  margin-left: 115px;
}
.footer__sitemap__list__item span {
  display: block;
  margin-bottom: 5px;
}
.footer__sitemap__list__item__link {
  margin-bottom: 5px;
}
.footer__sitemap__list__item__link a {
  display: inline;
}
.footer__sitemap__list__item__link a:hover{
  opacity: 1;
  border-bottom: 1px solid #5b5b5b;
}
.copylight {
  background-color: #fff;
  padding: 1.4rem 3.5rem;
  font-size: 13px;
}
.copylight a {
  display: inline;
}
.copylight a:hover {
  opacity: 1;
  border-bottom: 1px solid #5b5b5b;
}

@media (max-width: 767px) {
  .footer__inner {
    flex-wrap: wrap;
    padding: 2rem 1.4rem 4rem;
  }
  .footer__sitemap {
    margin-left: 0;
  }
  .footer__info {
    margin-bottom: 1.5%;
  }
  .footer__info__txt {
    margin-bottom: 0.8rem;
  }
  .footer__link__title {
    margin-bottom: 0.8rem;
  }
  .footer__sitemap__list__item:first-child {
    margin-top: 20px;
  }
  .copylight {
    padding: 1.4rem 1.4rem;
  }
}

@media (max-width: 696px) {
  .footer__inner {
    display: inherit;
    justify-content: inherit;
  }
  .footer__link {
    margin-left: 0;
  }
  .footer__info__url {
    margin-bottom: 1.5%;
  }
}

#pagetop {
  position:fixed;
  bottom: 140px;
  right: -100px; /* ページトップボタンの幅 */
}
#pagetop a {
  position: absolute;
  right: 10px;
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #bcbcbc;
}
#pagetop a:hover{
  background-color: #000;
  opacity: 1;
}
#pagetop a:before {
  content:'';
  width: 12px;
  height: 12px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 45%;
  left: 35%;
  margin-top: -4px;
  transform: rotate(-45deg);
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
  コンテンツ内の全ページ共通部分（TOP以外）
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
main {

}
.main__contents {
  margin: 7rem auto;
  padding: 0 1.2rem;
}
.main__contents__inner {
  max-width: 1110px;
  margin: 0 auto;
}
section {
  margin-bottom: 5rem;
}



@media (max-width: 1069px) {
  .main__contents {
    /* margin: 5.5rem auto; */
    margin: 6.8rem auto 5.5rem;
  }
}
@media screen and (max-width: 767px) {
  .main__contents__inner {
    max-width: none;
    width: 100%;
  }
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
  共通パーツ（TOP以外）
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

/* 見出しパターン
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
.head--pattern-A {
  text-align: center;
  font-size: 2rem;
  /* font-family: none; */
  margin-bottom: 2.2rem;
}
.head--pattern-B {
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  /* font-family: none; */
  border-bottom: 1.5px solid #5b5b5b;
  padding-bottom: 1.1rem;
  margin-bottom: 2.5rem;
}
.head--pattern-C {
  font-size: 1rem;
  font-family: 'Sawarabi Gothic';
  margin-bottom: 1rem;
}
.head--pattern-D {
  font-size: 1.25rem;
  font-family: 'Sawarabi Gothic';
  margin-bottom: 1rem;
}
.head--pattern-E {
  text-align: center;
  font-size: 1.75rem;
  /* font-family: none; */
  margin-bottom: 4rem;
}
.head--pattern-F {
  text-align: center;
  font-size: 2rem;
  font-family: 'Sawarabi Gothic';
  margin-bottom: 6.8rem;
}
.head--pattern-G {
  text-align: left;
  font-size: 1.6rem;
  font-family: 'Sawarabi Gothic';
  position: relative;
  border-bottom: 2px solid #033363;
  color: #033363;
  padding-bottom: 3px;
  margin-bottom: 2rem;
}
.head--pattern-G:before {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 9%;
  height: 4px;
  content: '';
  background: #033363;
}

@media screen and (max-width: 1069px) {
  .head--pattern-A {
    font-size: 1.625rem;
    margin-bottom: 2.4rem;
  }
  .head--pattern-B {
    font-size: 1.125rem;
    padding-bottom: 1.1rem;
    margin-bottom: 1.5rem;
  }
  .head--pattern-C {
    font-size: 14px;
  }
  .head--pattern-D {
    font-size: .9375rem;
    margin-bottom: 0.5rem;
  }
  .head--pattern-E {
    font-size: 1.375rem;
    margin-bottom: 2.4rem;
  }
  .head--pattern-F {
    font-size: 1.625rem;
    margin-bottom: 2.4rem;
  }
}

/* テキスト
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
.txt--pattern-A {
  margin-bottom: 1rem;
  font-family: 'Sawarabi Gothic';
}
.txt--pattern-B {
  margin-bottom: 1rem;
  font-family: 'Sawarabi Gothic';
}

@media screen and (max-width: 767px) {
  .txt--pattern-B {
    font-size: 14px;
  }
}

/* テーブルパターン
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
.table--pattern-A {
  width: 100%;
}
.table--pattern-A th, .table--pattern-A td {
  padding: 0.5rem;
  border: 1px solid #e6e6e6;
  font-weight: normal;
  text-align: center;
  font-family: 'Sawarabi Gothic';
}
.table--pattern-B {
  width: 100%;
}
.table--pattern-B th {
  text-align: center;
}
.table--pattern-B th, .table--pattern-B td {
  padding: 0.6rem 0.5rem;
  border: 1px solid #e6e6e6;
  line-height: 1.3;
  font-family: 'Sawarabi Gothic';
}
.table--pattern-C {
  width: 100%;
}
.table--pattern-C th, .table--pattern-C td {
  padding: 0.5rem;
  border: 1px solid #000;
  font-weight: normal;
  text-align: center;
  font-family: 'Sawarabi Gothic';
  font-size: 0.75rem;
  vertical-align: middle;
}
.table--pattern-C th {
  background-color: #E6E6E6;
}

/* これをつけるとテキスト寄せ調整可能 */
.t-left {
  text-align: left !important;
}
.t-right {
  text-align: right !important;
}
.t-center {
  text-align: center !important;
}

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

  /* スマホのときはスクロールさせる */
  .scroll{
    overflow: auto;
    white-space: nowrap;
  }
  .scroll::-webkit-scrollbar{
    height: 5px;
  }
  .scroll::-webkit-scrollbar-track{
    background: #F1F1F1;
  }
  .scroll::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }

  .table--pattern-A th, .table--pattern-A td {
    font-size: 14px;
  }
  .table--pattern-B th, .table--pattern-B td {
    font-size: 14px;
  }
  .table--pattern-C th, .table--pattern-C td {
    font-size: 14px;
  }
}

/* リストパターン
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
.list--pattern-A {
  padding: 0 0 0 15px;
  margin: 0 0 22px;
  font-family: 'Sawarabi Gothic';
}
.list--pattern-A li {
  position: relative;
  font-weight: 300;
}
.list--pattern-A li:before {
  margin: 0 0 22px;
  content: "";
  display: block;
  position: absolute;
  left: -15px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #5b5b5b;
  top: 10px;
}
.list--pattern-B {
  font-family: 'Sawarabi Gothic';
  font-size: 0.75rem;
  margin: 22px auto;
}
.list--pattern-B li {
  position: relative;
  font-weight: 300;
  padding-left: 10px;
}
.list--pattern-B li:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 767px) {
  .list--pattern-A {
    font-size: 14px;
  }
  .list--pattern-A li:before {
    top: 16%;
  }
  .list--pattern-B {
    font-size: 14px;
  }
  .list--pattern-B li {
    padding-left: 14px;
  }

}

@media screen and (max-width: 619px) {
  .list--pattern-A li:before {
    top: 8px;
  }
}






/* ボックスパターン
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
.box--pattern-A {
  margin: 2.8rem auto 2rem;
  /* border-bottom: 1.5px solid #5b5b5b; */
  padding-bottom: 2.8rem;
}
.box--pattern-A ul {
  display: flex;
  justify-content: space-between;
}
.box--pattern-A li {
  background-color: #31a2c8;
  width: 48.5%;
  padding: 2rem;
}
.box--pattern-A li .heading {
  text-align: center;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 32px;
  /* font-family: none; */
}
.box--pattern-A li .btn {
  text-align: center;
}
.box--pattern-A li .btn a {
  background-color: #fff;
  padding: 0.6rem 1.1rem;
  display: inline-block;
}
.box--pattern-B {
  background-color: #033363;
  max-width: 1110px;
  margin: 40px auto;
  padding: 2rem;
}
.box--pattern-B .heading {
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 32px;
  /* font-family: none; */
}
.box--pattern-B .btn {
  text-align: center;
}
.box--pattern-B .btn a {
  background-color: #fff;
  padding: 0.6rem 1.1rem;
  display: inline-block;
}
.box--patternC {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  font-family: 'Sawarabi Gothic';
}
.box--patternC--inner {
  display: flex;
  justify-content: space-between;
  border-radius: 10px 10px 0 0;
  padding: 2.5rem;
  position: relative;
}
.box--patternC--img {
  position: absolute;
  left: 2.5rem;
  top: 2.5rem;
  max-width: 303px;

  /* 追加 */
  width: 303px;
  height: 301px;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width:575px) {
  .box--patternC--img {
    width: 100%;
  }
}


.box--patternC--img img {
  /* 追加 */
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.box--patternC--heading {
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: -0.3rem;
  padding-left: 21rem;
}
.box--patternC--outline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 2.5rem 2.5rem;
  min-height: 17rem;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 3px 10px 0 rgb(0 0 0 / 15%);
}
.box--patternC--outline--inner {
  padding-left: 21rem;
  margin-top: 2.5rem;
}
.box--patternC--outline--txt {
  font-size: 1rem;
  line-height: 2.1;
  margin-bottom: 1.4rem;
}
.box--patternC--outline--name {
  font-size: 1rem;
}
.box--patternC--outline--name span {
  margin-left: 1.2rem;
  font-size: 0.9rem;
}

@media screen and (max-width: 767px) {
  .box--pattern-A {
    padding-bottom: 1.8rem;
    margin: 2.8rem auto 1.8rem;
  }
  .box--pattern-A li {
    padding: 1rem;
    margin-top: 2.3%;
  }
  .box--pattern-A li .heading {
    font-size: .9375rem;
    margin-bottom: 1.5rem;
  }
  .box--pattern-B {
    max-width: none;
    width: 100%;
    margin: 1rem auto;
    padding: 1rem;
  }
  .box--pattern-B .heading {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
  .box--patternC {
    max-width: none;
    width: 100%;
  }
  .box--patternC--inner {
    padding: 1.5rem;
  }
  .box--patternC--img {
    max-width: none;
    width: calc((200 / 750) * 100vw);
    left: 1.5rem;
    top: 1.5rem;
  }
  .box--patternC--heading {
    padding-left: calc((230 / 750) * 100vw);
  }
  .box--patternC--outline--inner {
    padding-left: calc((230 / 750) * 100vw);
  }

}
@media screen and (max-width: 575px) {
  .box--pattern-A ul {
    display: inherit;
    justify-content: inherit;
  }
  .box--pattern-A li {
    width: 100%;
    margin-top: 4%;
  }
  .box--patternC--inner {
    display: inherit;
    justify-content: inherit;
    position: inherit;
  }
  .box--patternC--img {
    position: inherit;
    left: inherit;
    top: inherit;
    max-width: none;
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .box--patternC--heading {
    padding-left: 0;
  }
  .box--patternC--outline {
    min-height: none;
    padding: 0 1.5rem 1.5rem;
  }
  .box--patternC--outline--inner {
    padding-left: 0;
    margin-top: 1.5rem;
  }
  .box--patternC--outline--txt {
    font-size: 16px;
  }
  .box--patternC--outline--name {
    font-size: 16px;
  }
  .box--patternC--outline--name span {
    margin-left: 14px;
  }


}

/* 図のモーダルウィンドウ
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
.modal__inner {
  max-width: 1110px;
  margin: 0 auto;
}
/*クリックする図の指定*/
.modal__click {
  display: block;
  position: relative;
}
.modal__click:hover {
	transition: 1.0s;
  opacity: 0.6;
}
.modal__click::after {
  display: none;
  position: absolute;
  content: "";
  background-image: url(../img/common/expansion-icon.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 51px;
  height: 51px;
  top: 48%;
  left: 48%;
  box-shadow: 0 3px 7px 0 rgb(0 0 0 / 7%);
}
.modal__click:hover::after {
  display: block;
}
/*モーダルの指定*/
.modal__contents {
  background: rgba(0,0,0,0.8);
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
.modal__contents__box {
  background: #fff;
  left: 50%;
  padding: 1rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 80%;
}
.modal__contents__box__btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 10px;
  right: -15px;
  width: 40px;
  height: 40px;
  font-size: 23px;
  color: #000;
  background-color: #fff;
  border-radius: 80px;
  box-shadow: 0 3px 7px 0 rgb(0 0 0 / 7%);
  cursor: pointer;
  /* font-family: none; */
}
.modal__contents__box__btn:hover{
  opacity: 1;
}
