@charset "UTF-8";
/* ----------------------------------------
   ■ index.css
---------------------------------------- */
/* RESET
---------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}
.pc{
  display: block;
}
.sp{
  display: none;
}
ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Original */
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

a:hover {
  opacity: 0.8;
}

/* @media : SP
---------------------------------------- */
@media screen and (max-width: 768px) and (min-width: 481px) {
  html, body {
    font-size: 1.3020833333vw;
  }
}
@media screen and (max-width: 768px) {
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
}
@media screen and (max-width: 480px) {
}


/* バーガーメニュー
---------------------------------------- */

/* アイコン用 */
.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #3584bb;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu-btn-check {
  display: none;
}

/* メニュー */
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #3584bb;
}
.menu-content ul {
  padding: 70px 10px 0;
}
.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color:#ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;/*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #3584bb;
  transition: all 0.5s;/*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
  left: 0;/*メニューを画面内へ*/
}


/* 画像フェードイン */
.slider {
  height: 53vw;
  margin-inline: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
  width: 80vw;
}
.slick-img img {
  width: 100%;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}



/* 共通
---------------------------------------- */
.w980 {
  max-width: 980px;
  margin: 0 auto;
}

.bg-gray {
  background-color: #F0F5F5;
}

.bg-white {
  background-color: #fff;
}

.wrap-fx{
  display: flex;
  justify-content: center;
}

.pv50{
  padding: 50px 0;
}

@media screen and (max-width: 768px) {
  .w980 {
    margin: 0 10px;
  }
}

/* sec01
---------------------------------------- */
.sec01 {
  padding-top: 40px;
}
.sec01 div.bg-white {
  text-align: center;
  padding: 10px 0;
}
.sec01 div.bg-white div {
  width: 30%;
  margin: 0 auto;
}
.sec01 div h1 {
  width: 50%;
  margin: 0 auto;
  padding: 30px 0;
}

@media screen and (max-width: 768px) {
  .sec01 {
    padding-top: 20px;
  }
  .sec01 div.bg-white div {
    width: 50%;
  }
  .sec01 div h1 {
    width: 80%;
    padding: 14px 0;
  }
}

/* sec02
---------------------------------------- */
.sec02 .w980 div {
  margin: 50px 0;
}

.sec02 .w980 div.wrap-fx {
  flex-direction: row-reverse;
}

.sec02 .w980 div.wrap-fx .wrap-fx{
  flex-direction: row;
}

.sec02 .w980 div.wrap-fx div:first-child {
  width: 70%;
}

.sec02 .w980 div.wrap-fx.anchor a {
  display: block;
  width: 48%;
}

.sec02 .w980 div.wrap-fx.anchor a:first-child {
  width: 30%;
}

.sec02 .w980 div.wrap-fx.anchor a:last-child {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .sec02 .w980 div.wrap-fx {
    display: block;
  }
  .sec02 .w980 div.wrap-fx .wrap-fx{
    display: flex;
    justify-content: space-evenly;
  }
  .sec02 .w980 div.wrap-fx.anchor a:last-child {
    margin-top: 0;
  }
  .sec02 .w980 div.wrap-fx div:first-child {
    margin: 0 auto;
  }

}

/* sec03
---------------------------------------- */
.sec03 {
  position: relative;
  margin-bottom: 15%;
}

.sec03::after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 8%;
  width: 100%;
  height: 68%;
  background-color: #F0F0F0;
  z-index: -1;
}

.sec03 .w980 h2 {
  width: 45%;
  margin: 0 auto;
  padding-left: 50px;
}

.sec03 .w980 .border {
  margin: 50px auto 0;
  border: 2px solid #000;
  position: relative;
  padding: 20px 0 20px 20px;
  background-color: #fff;
}

.sec03 .w980 .border h3 {
  text-align: center;
  background-color: #fff;
  width: 350px;
  margin: -30px auto 20px;
  font-size: 20px;
  font-weight: bold;
}

.sec03 .w980 .border .wrap-fx {
  justify-content: space-around;
}

.sec03 .w980 .border .wrap-fx ul li {
  margin-bottom: 5px;
  font-weight: bold;
}

.sec03 .w980 .border .wrap-fx .wrap-fx2 {
  display: flex;
  justify-content: space-evenly;
  width: 60%;
}

.sec03 .w980 .border .wrap-fx .wrap-fx2 ul li{
  margin-bottom: 10px;
}

.sec03 .w980 .border .wrap-fx .wrap-fx3 {
  display: flex;
  justify-content: space-between;
  width: 40%;
}

.sec03 .w980 .border .wrap-fx .wrap-fx3::before {
  content: '';
  border-left: 2px solid #000;
  height: 90px;
  margin: 10px 20px 0;
}

.sec03 .w980 .border .wrap-fx .wrap-fx3 ul {
  width: 60%;
}

.sec03 .w980 .border .wrap-fx .wrap-fx3 div {
  width: 50%;
  margin-top: 20px;
}

.sec03 .w980 a.btn{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 60px;
  margin: 8% auto 0;
  background-color: #B3DBFF;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  position: relative;
}

.sec03 .w980 a.btn span.triangle {
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  border-left: 25px solid transparent;
  border-bottom: 25px solid #84C5FF;
  border-bottom-right-radius: 5px;
}

@media screen and (max-width: 768px) {
  .sec03::after {
    bottom: 12%;
  }
  .sec03 .w980 h2 {
    width: 70%;
    padding-left: 0;
  }
  .sec03 .w980 .border .wrap-fx {
    justify-content: space-between;
  }
  .sec03 .w980 .border .wrap-fx .wrap-fx2 {
    display: block;
    width: 50%;
  }
  .sec03 .w980 .border h3 {
    width: 260px;
    margin: -30px auto 20px;
    font-size: 16px;
  }
  .sec03 .w980 .border {
    position: relative;
    padding: 20px 10px;
  }
  .sec03 .w980 .border .wrap-fx ul li {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .sec03 .w980 .border .wrap-fx .wrap-fx3 {
    width: 50%;
    justify-content: flex-start;
  }
  .sec03 .w980 .border .wrap-fx .wrap-fx3::before {
    border-left: 1px solid #000;
    height: 190px;
    margin: 0 12px;
  }
  .sec03 .w980 .border .wrap-fx .wrap-fx3 ul {
    width: 100%;
  }
  .sec03 .w980 .border .wrap-fx .wrap-fx3 div {
    position: absolute;
    width: 30%;
    bottom: 0;
    right: 0px;
  }
  .sec03 .w980 a.btn {
    margin: 0 auto;
  }
}



/* sec04
---------------------------------------- */
.sec04 .w980 h2 {
  width: 50%;
  margin: 0 auto;
}

.sec04 .bg-gray2 {
  position: relative;
  margin-bottom: 150px;
}

.sec04 .bg-gray2::after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: -25%;
  width: 100%;
  height: 100%;
  background-color: #F0F5F5;
  z-index: -1;
}
.sec04 .bg-gray2.lyt02::after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: -70px;
  width: 100%;
  height: 90%;
  background-color: #F0F5F5;
  z-index: -1;
}

.sec04 .bg-gray2 ul:first-child {
  margin-top: 5%;
}

.sec04 .bg-gray2 ul.wrap-fx {
  justify-content: space-evenly;
  flex-direction: row-reverse;
}
.sec04 .bg-gray2 ul.lyt-wrap {
	flex-wrap: wrap;
}

.sec04 .bg-gray2 ul li {
  width: 44%;
}
.sec04 .bg-gray2 ul li.menu {
  width: 100%;
}
.sec04 .bg-gray2 ul li.menu dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.sec04 .bg-gray2 ul li.menu dl dt {
	width: 100%;
	text-align: center;
	font-weight: bold;
	padding: 2em 0 1em;
	font-size: 1.2rem;
}
.sec04 .bg-gray2 ul li.menu dl dd {
	width: 44%;
}
.sec04 .bg-gray2 ul li.menu dl dd figcaption {
	padding: .8em .4em .5em;
}
.sec04 .bg-gray2 ul li.menu dl dd:nth-child(n+4) {
	margin-top: 1.4em;
}

.sec04 .bg-gray2 ul li h3 {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 3px;
}
.sec04 .bg-gray2 ul li h3 span {
  font-size: 18px;
}

.sec04 .bg-gray2 ul li p {
  margin: 20px 0 50px;
  line-height: 1.3;
  text-align: justify;
}

.sec04 .bg-gray2 ul.w980.wrap-fx li a.btn,nav a.btn{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 60px;
  margin: 8% auto 0;
  background-color: #FFD935;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  position: relative;
}
nav a.btn{
  margin: 8% auto;
}
.sec04 .bg-gray2 ul.w980.wrap-fx li a.btn span.triangle,nav a.btn span.triangle {
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  border-left: 25px solid transparent;
  border-bottom: 25px solid #FFC000;
  border-bottom-right-radius: 5px;
}

@media screen and (max-width: 768px) {
  .sec04 .w980 h2 {
    width: 90%;
    margin: 30% auto 15%;
  }
  .sec04 .bg-gray2 ul.wrap-fx {
    display: block;
  }
  .sec04 .bg-gray2 ul li {
    width: 90%;
    margin: 0 auto;
  }
  .sec04 .bg-gray2 ul li h3 {
    font-size: 18px;
    margin-top: 20px;
  }
  .sec04 .bg-gray2 ul li h3 span {
    font-size: 16px;
  }
  .sec04 .bg-gray2 ul li p {
    margin: 20px 0 30px;
    font-size: 14px;
  }
  .sec04 .bg-gray2 ul li.menu dl dt {
	padding: 0em 0 1em;
	font-size: 1rem;
  }
  .sec04 .bg-gray2 ul li.menu dl dd {
	width: 46%;
  }
  .sec04 .bg-gray2 ul li.menu dl dd figcaption {
	padding: .4em .4em .5em;
	font-size: .7rem;
	line-height:1.4;
	letter-spacing:.03em;
  }
  .sec04 .bg-gray2 ul li.menu dl dd:nth-child(n+4) {
	margin-top: 1em;
  }
  .sec04 .bg-gray2 {
    margin-bottom: 20%;
  }
  .sec04 .bg-gray2::after {
    bottom: 6%;
    height: 370px;
  }
  .sec04 .bg-gray2.lyt02::after {
    bottom: 3%;
    height: 90%;
  }
	nav a.btn{
		margin: 3em auto 5em;
	}
}

/* note
---------------------------------------- */
.note ul {
  max-width: 980px;
  margin: 0 auto;
}

.note ul li {
  font-size: 13px;
  padding-left:1em;
	text-indent:-1em;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .note {
    margin: 30px 20px 10px;
  }
  .note ul li {
    font-size: 10px;
  }
}

/* gototop
---------------------------------------- */
#gototop{
  position: fixed;
  right: 20px;
  bottom: 20px;
}

#gototop a{
  font-size: 25px;
  background: rgba(54,54,54,0.6);
  color: #fff;
  display: block;
  padding: 15px 15px;
  text-decoration: none;
}

/* footer
---------------------------------------- */
footer#links {
  padding: 7% 7% 30px;
  font-size: 1.5rem;
  text-align: center;
  font-size: 15px;
  background: #fff;
}
footer#links ul {
  letter-spacing: -0.38em;
}
footer#links ul li {
  display: inline-block;
  padding: 0 1em;
  border-left: 1px solid #555;
  letter-spacing: normal;
}
footer#links ul li:last-child {
  border-right: 1px solid #555;
}
footer#links ul li a {
  color: #555;
  text-decoration: none;
}

footer .copyright{
	padding: 30px 0 0;
	text-align: center;
	margin-bottom: 0;
	color: #888;
	font-size: 0.875rem;
	font-family: '游明朝' , 'Yu Mincho', 'YuMincho' , 'ＭＳ Ｐ明朝' , 'ＭＳ 明朝' , Georgia;
	letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  footer#links {
    padding: 12% 3%;
    font-size: 12px;
  }
	footer .copyright{
		font-size: 0.625rem;
	}
}


/*26.01.15 追加*/
.lyt-box-spgr{
	max-width: min(980px, 90%);
	margin: 4em auto 0;
	padding: 2em;
	border: 1px solid #d9ca9c;
}
.lyt-box-spgr .lyt-hdg{
	text-align: center;
	font-size: 1.8em;
	color: #b29d6c;
	padding-bottom: 1.2em;
	line-height:1.7;
}
.lyt-box-spgr .lyt-inner{
	display: flex;
	justify-content: center;
	align-items: flex-start;	
}
.lyt-box-spgr .lyt-inner .lyt-ph{
	width: 55%;
}
.lyt-box-spgr .lyt-inner .lyt-doc{
	width: 42%;
	margin-left: 3%;
	line-height:1.7;
	letter-spacing:.05em
}
.lyt-box-spgr nav a.btn{ margin: 1.2em auto 0; background-color: #b29d6c;color:#fff;}
.lyt-box-spgr nav a.btn span.triangle{border-bottom-color:#d9ca9c;}

@media screen and (max-width: 768px) {
.lyt-box-spgr{
	  border-left: none;
	  border-right: none;
}
.lyt-box-spgr .lyt-hdg{ padding-bottom: .6em;}
.lyt-box-spgr .lyt-inner{ display: block; }
.lyt-box-spgr .lyt-inner .lyt-ph,
.lyt-box-spgr .lyt-inner .lyt-doc{ width: 100%; }	
.lyt-box-spgr .lyt-inner .lyt-doc{ margin: 1.2em 0;}
.lyt-box-spgr nav a.btn{ margin: 0 auto;}
}