/*font*/
@import url('//fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap');
@import url('//fonts.googleapis.com/css?family=Noto+Serif+JP:200,300,400,500,600,700,900&display=swap');
@import url('//fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap');
/*@import url('//fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');*/
@import url('//fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');

/* Base Style
======================================================================*/
body, html {
    height: 100% !important;
    /*background-color: #001D09;*/
}
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body {
    font-family: 'Shippori Mincho', 'Noto Serif JP', 'Times New Roman', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'HiraMinProN-W3', 'HGS明朝E', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
    color: #000;
    line-height: 1.8;
    font-size: 1.6em;
    font-weight: 400;
}
/* hover */
a {
  color: #2E87CA;
  text-decoration: none;
}
a:hover {
  color: #205F8E;
  /*text-decoration: underline;*/
}
a img.over {
  transition: all 0.3s linear;
}
a img.over:hover {
  opacity: 0.6;
}
/* display */
.sp {
  display: none !important;
}
.pc {
  display: block !important;
}
.sp_pr {
  display: none !important;
}
.pc_pr {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 480px) {
  .sp_pr {
    display: block !important;
  }
  .pc_pr {
    display: none !important;
  }
}

/* img */
img {
    max-width: 100%;
    height: auto;
}
@media screen and (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }
}

/***** text-color *****/

/* commmon
======================================================================*/
.wrap {
    width: 100%;
    position: relative;
}

.inner {
  max-width: 1060px; /*1000*/
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 20px;
  }
}

/* header
======================================================================*/
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.4);
    transition: all 0.3s linear;
    z-index: 100;
}

header.is-animation{
    background: rgba(255,255,255,0.8);
}

header .inner {
    max-width: 100%;
    height: 100px;
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 15px;
    transition: all 0.75s ease-out;
}

@media screen and (max-width: 768px){
header .inner {
    height: 60px;
    padding: 10px 10px 0;
}
}

header h1.logo {
    position: relative;
    transition: all 1.25s ease-out;
}
@media screen and (max-width: 768px){
header h1.logo {
    max-width: 200px; /*330px*/
    text-align: center;
}

}
header h1.logo img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
    transition: all 0.5s linear;
}

/***** header_nav *****/
.header_nav {
    margin-right: 60px;
    overflow: hidden;
}
@media screen and (max-width: 768px){
.header_nav {
    display: none;
}
}

.header_nav ul {
	padding-top: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: baseline;
}

.header_nav li a.entry {
    font-family: "adobe-garamond-pro", 'Shippori Mincho', 'Noto Serif JP', 'Times New Roman', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'HiraMinProN-W3', 'HGS明朝E', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
    font-weight: 400;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    width: 132px;
    height: 34px;
    color: #FFFFFF;
    background-color: #8e7e76;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition: all 0.3s linear;
	/* option */
	text-decoration: none!important;
}

/* 2024.08.20 */
.header_nav li{
    margin-left: 10px;
}

.header_nav li a.raijo {
    font-family: "adobe-garamond-pro", 'Shippori Mincho', 'Noto Serif JP', 'Times New Roman', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'HiraMinProN-W3', 'HGS明朝E', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
    font-weight: 400;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    width: 132px;
    height: 34px;
    color: #FFFFFF;
    background-color: #716864;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition: all 0.3s linear;
}

.header_nav li a:hover {
  opacity: 0.6;
}

/* global_nav
======================================================================*/
#global_nav {
}

/* btm_bnr
======================================================================

.btm_bnr{
    width: 100%;
    background-color: #f6f6f6;
}

.btm_bnr ul{
    width: 100%;
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.btm_bnr ul li{
    width: 50%;
    border-top: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.btm_bnr ul li:nth-child(even){
    border-right: none;
}

@media screen and (max-width: 768px) {
.btm_bnr ul li{
    width: 100%;
    border-right: none;
}
}

.btm_bnr ul li a{
    width: 100%;
    height: 300px;
    display: flex;
	flex-wrap: wrap;
	justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-align: center;
    color: #fff;
    transition: all 0.3s linear;
    opacity: 0.4;
    position: relative;
}
@media screen and (max-width: 768px) {
.btm_bnr ul li a{
    width: 100%;
    height: 120px;
}
}

.btm_bnr ul li a:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(42,29,23,0.75);
    transition: all 0.3s linear;
    z-index: 22;
}
.btm_bnr ul li a:hover:after{
    background-color: rgba(42,29,23,0.0);
}

.btm_bnr ul li a{
    opacity: 1.0;
}
.btm_bnr ul li a:hover{
}

.btm_bnr ul li.btm_01 a{
    background-image: url(../images/btm_01@2x.png);
}
.btm_bnr ul li.btm_02 a{
    background-image: url(../images/btm_02@2x.png);
}
.btm_bnr ul li.btm_03 a{
    background-image: url(../images/btm_03@2x.png);
}
.btm_bnr ul li.btm_04 a{
    background-image: url(../images/btm_04@2x.png);
}
.btm_bnr ul li.btm_05 a{
    background-image: url(../images/btm_05@2x.png);
}
.btm_bnr ul li.btm_06 a{
    background-image: url(../images/btm_06@2x.png);
}

.btm_bnr ul li.entry {
    width: 100%;
    border-top: none;
    border-right: none;
}

.btm_bnr ul li.entry a{
    height: 80px;
    background-color: #716864;
}
@media screen and (max-width: 768px) {
.btm_bnr ul li.entry a{
    height: 56px;
}
}

.btm_bnr ul li.entry a:after{
    opacity: 0;
}
.btm_bnr ul li.entry a:hover{
    opacity: 0.6;
}

.btm_bnr ul li p{ 
   font-size: 3.2rem;
    position: relative;
    z-index: 33;
}
@media screen and (max-width: 768px) {
.btm_bnr ul li p{ 
   font-size: 2.4rem;
}
}

.btm_bnr .inner{
    padding-top: 60px;
    padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
.btm_bnr .inner{
    padding-top: 30px;
    padding-bottom: 30px;
}
}

.btm_bnr p.cap{
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 1.2rem;
    z-index: 11;
}
@media screen and (max-width: 768px) {
.btm_bnr p.cap{
    right: 5px;
    bottom: 5px;
}
}

.btm_bnr p.caption{
    font-size: 1.2rem;
    text-align: justify;
    line-height: 1.6;
}

.btm_bnr .tel-set{
    text-align: center;
    margin-top: 40px;
}
@media screen and (max-width: 768px) {
.btm_bnr .tel-set{
    margin-top: 20px;
}
}
======================================================================*/

/* ft_wrap
======================================================================*/

.ft_wrap{
    width: 100%;
    /*background-color: #f6f6f6;*/
}

.ft_wrap .inner{
    padding-top: 60px;
    padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
.ft_wrap .inner{
    padding-top: 30px;
    padding-bottom: 30px;
}
}

.ft_wrap p.cap{
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 1.2rem;
    z-index: 11;
}
@media screen and (max-width: 768px) {
.ft_wrap p.cap{
    right: 5px;
    bottom: 5px;
}
}

.ft_wrap p.caption{
    font-size: 1.2rem;
    text-align: justify;
    line-height: 1.6;
}

.ft_wrap ul.ftbnr{
    display: flex;
	flex-wrap: wrap;
	/*justify-content: space-between;*/
	justify-content: center;
	padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
.ft_wrap ul.ftbnr {
	max-width: 90%;
	margin: 0 auto;
    padding-bottom: 40px;
}
}

.ft_wrap ul.ftbnr li{
    /*width: 33%;
    max-width: 330px;*/
}
@media screen and (max-width: 768px) {
.ft_wrap ul.ftbnr li{
    /*width: 100%;
    margin: 0 auto 10px;*/
}
}

.ft_wrap ul.ftbnr li a{
    transition: all 0.3s linear;
}

.ft_wrap ul.ftbnr li a:hover{
    opacity: 0.6;
}

.ft_wrap .tel-set{
	width: 100%;
	text-align: center;
	background-image: url(../images/tel-bg@2x.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	padding: 100px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (max-width: 768px) {
.ft_wrap .tel-set{
    padding: 40px 20px;
}
}

.ft_wrap .tel-set p{
    text-align: center;
	font-size: 1.6rem;
	line-height: 2.0;
}

.ft_wrap .tel-set p.tel-link {
    margin: 15px 0;
}

.ft_wrap .tel-set p.caption{
    font-size: 1.2rem;
	line-height: 1.5;
}
@media screen and (max-width: 768px) {
.ft_wrap .tel-set p{
	font-size: 1.3rem;
}

.ft_wrap .tel-set p.tel-link {
    margin: 10px 0;
}

.ft_wrap .tel-set p.caption{
    font-size: 1.1rem;
}
}


/* footer
======================================================================*/
footer {
    width: 100%;
}

footer .inner {
    padding-top: 80px;
    padding-bottom: 80px;
}

footer p.tel{
    text-align: center;
}

footer .developer {
  width: 100%;
  padding: 0;
  margin: 50px auto;
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .developer span {
    margin-right: 1em;
}

footer .developer img {
  display: block;
  width: 320px;
}
@media screen and (max-width: 768px) {
footer .developer img {
  display: block;
  width: 240px;
}
}
/*
footer .copyright {
  height: 40px;
  font-family: 'Bellefair', serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(62, 56, 57, 0.2);
}
@media screen and (max-width: 768px) {
footer .copyright {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-align: center;
}
}
*/
footer #copyright {
  font-family: 'Bellefair', serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

footer #copyright p{
	width: 100%;
	text-align: center;
	padding-top: 20px;
}

footer #copyright p img{
	width: 240px!important;
	height: auto;
}

@media screen and (max-width: 768px) {
footer #copyright {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-align: center;
}
}

#bukken_migration_footer footer #footer_nav03 {
    /*margin: 30px auto;
    font-size: 11px;
    font-size: 11px;
    text-align: center;*/
    width: 100%;
    }



/* pageTop
======================================================================*/
.pageTop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 99;
}

/* contents
======================================================================*/
#contents {
    width: 100%;
    position: relative;
    /*margin-top: 160px;*/
}
@media screen and (max-width: 768px){
#contents {
    /*margin-top: 80px;*/
}
}

#contents h2{
    text-align: center;
    font-size: 3.6rem;
    line-height: 1.5;
    /*letter-spacing: 0.04em;*/
}
@media screen and (max-width: 768px){
#contents h2{
    font-size: 2.4rem;
}
}

#contents h3{
    text-align: center;
    font-size: 3.0rem;
    line-height: 1.5;
    /*letter-spacing: 0.04em;*/
}
@media screen and (max-width: 768px){
#contents h3{
    font-size: 2.0rem;
}
}

#contents h3.eng{
    text-align: center;
    font-size: 4.2rem;
    line-height: 1.5;
    /*letter-spacing: 0.02em;*/
	color: #6e6865;
}
@media screen and (max-width: 768px){
#contents h3.eng{
    font-size: 2.2rem;
}
}

#contents h3.line{
	padding-bottom: 10px;
	border-bottom: 1px solid #6e6865;
}

#contents h2 sup,
#contents h3 sup{
    font-size: 1.4rem;
	vertical-align: super;
}

#contents h4{
    text-align: left;
    font-size: 2.8rem;
    line-height: 1.4;
    /*letter-spacing: 0.02em;*/
}
@media screen and (max-width: 768px){
#contents h4{
    font-size: 1.8rem;
}
}

#contents h4.line{
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #6e6865;
}

#contents h5{
	text-align: left;
    font-size: 2.2rem;
    line-height: 1.4;
	margin-bottom: 20px;
}
@media screen and (max-width: 768px){
#contents h5{
    font-size: 1.6rem;
}
}

#contents p.lead{
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.9;
    /*letter-spacing: 0.02em;*/
}

#contents p.lead.left{
    text-align: justify;
}

@media screen and (max-width: 768px){
#contents p.lead{
	text-align: justify;
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 0em;
}
}
/*
#contents p{
    font-size: 1.6rem;
}
*/
@media screen and (max-width: 768px){
#contents p{
    font-size: 1.2rem;
}
}

#contents p.cap{
    font-size: 1.2rem;
}

#contents p.cap.wht{
    color: #FFFFFF;
}

@media screen and (max-width: 768px){
#contents p.cap{
    font-size: 1.0rem;
}
}


#contents p.annotation{
    font-size: 1.2rem;
}

@media screen and (max-width: 768px){
#contents p.annotation{
    /*font-size: 1.1rem;*/
}
}

/* box_entry
======================================================================*/

a.box_entry{
	position: relative;
    width: 300px;
    height: 42px;
    color: #FFFFFF;
    transition: all 0.3s linear;
    background: linear-gradient(to right, #830610, #62040b);
    font-size: 2.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

a.box_entry:hover{
    opacity: 0.6;
}

/* arrow */
a img.arrow{
    position: absolute;
	right: 10px;
	top: 48%;
	transform: translateY(-50%);
	transition:  all 0.3s ease-out;
	z-index: 11;
}

a:hover img.arrow{
	right: 4px;
}

/* box_more
======================================================================*/

a.box_more{
	position: relative;
    width: 236px;
    height: 42px;
    color: #FFFFFF;
    transition: all 0.3s linear;
    background: linear-gradient(to right, #887c75, #665b56);
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

a.box_more:hover{
    opacity: 0.6;
}

a.box_more.off{
    opacity: 0.5;
    pointer-events: none;
}

/* =========================================================
   VIEW MORE ripple（波紋） - add only
========================================================= */

.viewmore {
  position: relative;
  display: inline-block;
}

/* ボタン本体を“波紋の基準”にする */
.viewmore .box_more{
  position: relative;
  z-index: 0;          /* 疑似要素を背面に回す */
  display: inline-flex;/* 既存の整列を崩しにくい */
  align-items: center;
  gap: .6em;
  overflow: visible;   /* 波紋が外へはみ出す */
}

/* 波紋リング（2枚） */
.viewmore .box_more::before,
.viewmore .box_more::after{
  content:"";
  position: absolute;
  /*left: 50%;*/
	right: -80px;
  top: 50%;

  /* ▼ここが調整ポイント：円の基準サイズ */
  width: 88px;
  height: 88px;

  transform: translate(-50%, -50%) scale(1);
  border-radius: 50%;
  border: 1px solid #887c75; /* 文字色と同色でリング */
  opacity: 0;
  pointer-events: none;
  z-index: -1;         /* ボタンの背面に */
  animation: viewmore-ripple 2.2s infinite;
}

/* 2本目を時間差で */
.viewmore .box_more::after{
  animation-delay: 1.1s;
}

@keyframes viewmore-ripple{
  0%   { opacity: .55; transform: translate(-50%, -50%) scale(1); }
  70%  { opacity: .15; }
  100% { opacity: 0;   transform: translate(-50%, -50%) scale(1.55); }
}

/* 動きを減らす設定 */
@media (prefers-reduced-motion: reduce){
  .viewmore .box_more::before,
  .viewmore .box_more::after{
    animation: none;
    opacity: 0;
  }
}



/* mapSec/ */

#mapSec {

  width: 100%;

  max-width: 1000px;

  padding: 0;

  margin: 0;

  color: #2a2d31;

  background: none;

  text-align: center;

  line-height: 1.5em;

  font-size: 13px;

  letter-spacing: 0.05em;

}

#mapSec div {

  margin-bottom: 20px;

  padding: 40px 0;

  position: relative;

}

#mapSec div h2 {

  font-size: 18px;

  margin: 0;

}

#mapSec div .mapImg {

  margin: 40px 0;

  width: 100%;

  height: auto;

  box-sizing: content-box;

}

#mapSec div p {

  width: 100%;

  margin: 0;

}

#mapSec div p a {

  text-decoration: none;

}

#mapSec div p .tel {

  display: inline-block;

  margin: 0.4em auto 0.8em;

  color: #fff;

  vertical-align: middle;

}

#mapSec div p .tel a {

  text-decoration: none;

}

#mapSec div p .tel img {

  width: 39px;

  height: 22px;

  display: inline-block;

  margin: 4px 0 0;

}

#mapSec div p .tel em {

  color: #000;

  font-size: 42px;

  font-weight: 500;

  letter-spacing: 0.1em;

  margin: 0 0 0 10px;

  vertical-align: middle;

}

#mapSec div p small {

  font-size: 11px;

  display: inline-block;

  text-align: left;

  letter-spacing: 0.1em;

  line-height: 1.5em;

  vertical-align: middle;

}

.remodal .btnBox {

  width: 100%;

  margin: 0 auto 40px;

  display: flex;

  flex-direction: row;

  flex-wrap: nowrap;

  justify-content: center;

}

.remodal .btnBox li {

  margin: 0 1em;

}

.remodal .btnBox .closeBtn a, .remodal .btnBox .printBtn a {

  display: block;

  padding: 0.4em 1em;

  width: 8em;

  transition: all 0.3s ease-out;

  background-color: #787374;

  font-family: 'Bellefair', serif;

  color: #fff;

  font-size: 16px;

  line-height: 1em;

  text-align: center;

  text-decoration: none;

  position: relative;

}

.remodal .btnBox .closeBtn a:hover, .remodal .btnBox .printBtn a:hover {

  background-color: #3e3839;

}



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

  #mapSec div {

    padding: 30px 0;

  }

  .remodal .btnBox {

    margin: 0 auto 30px;

  }

}



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

  #mapSec div {

    padding: 15px 0;

  }

  #mapSec div p .tel em {

    font-size: 38px;

    letter-spacing: 0.05em;

  }

  #mapSec div p small {

    font-size: 10px;

    letter-spacing: 0.05em;

  }

  .remodal .btnBox .closeBtn a, .remodal .btnBox .printBtn a {

    font-size: 13px;

    line-height: 1em;

  }

  .remodal .btnBox .printBtn {

    display: none;

  }

}

/* /mapSec */

/* b-p-paragraph
======================================================================*/
.b-p-paragraph p a{
	color: #000000;
	text-decoration: underline;
}
.b-p-paragraph p a:hover{
	color: #222C81;
	text-decoration: underline;
}


/*point
======================================================================*/
.point{}

.point ul{
	max-width: 1040px;
	padding: 35px 20px 0;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.point ul li{
	width: 50%;
	max-width: 495px;
	margin: 5px 0;
}
@media screen and (max-width: 768px) {
.point ul li{
	width: 100%;
	margin: 5px auto;
}
}

/* plan
======================================================================*/

.plan{
	width: 100%;
	padding: 60px 80px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background-image: url(../images/plan/plan-bg@2x.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}
@media screen and (max-width: 768px) {
.plan{
	padding: 20px 30px;
}
}

.plan.index{
	background-image: url(../images/index/plan-bg@2x.png);
}

.plan .inner{
	max-width: 1000px;
}

.plan-ttl{
	text-align: center;
	margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
.plan-ttl{
	margin-bottom: 30px;
}
}

.plan p.catch{
    text-align: center;
	font-size: 2.6rem;
	line-height: 1.6;
	margin-top: 10px;
	margin-bottom: 30px;
	color: #FFFFFF;
}

@media screen and (max-width: 768px) {
.plan p.catch{
	font-size: 1.8rem;
	line-height: 1.4;
	margin-bottom: 10px;
}
}

.plan p.caption{
    text-align: justify;
	font-size: 1.1rem;
	margin-top: 20px;
	color: #FFFFFF;
}

.plan p.caption.blk{
	color: #000000;
}

.plan-wrap{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
@media screen and (max-width: 768px) {
.plan-wrap {
}
}

.plan-col{
	width: 46%;
	max-width: 460px;
	display: flex;
	flex-wrap: wrap;
	background-color: #FFFFFF;
}

@media screen and (max-width: 768px) {
.plan-col{
	width: 100%;
	max-width: 460px;
	margin: 10px auto;
}
}

.plan-col .plan-img{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 20px;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.plan-col .plan-btn{
	margin-top: auto;
	padding-top: 20px;
}

.plan-col p.mrt{
	width: 100%;
	padding: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (max-width: 768px) {
.plan-col p.mrt{
	text-align: center;
}
.plan-col p.mrt img{
	width: 100%;
}
}

/*entry_wrap
======================================================================*/

.entry_wrap{
	width: 100%;
    background-color: #f3f2e6;
    padding: 40px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	position: relative;
}
@media screen and (max-width: 768px) {
.entry_wrap{
    padding: 20px 0;
}
}

.entry_wrap::before{
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 98%;
	height: 90%;
	border-right: 2px solid #FFFFFF;
	border-left: 2px solid #FFFFFF;
}

.entry_wrap h3{
	text-align: center;
	margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
.entry_wrap h3{
	margin-bottom: 10px;
}
}
@media screen and (max-width: 480px) {
.entry_wrap h3 img{
	max-width: 200px;
}
}

.entry_wrap .btn{
	text-align: center;
	margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
.entry_wrap .btn{
	margin-bottom: 20px;
}
}

.entry_wrap p.copy{
	text-align: center;
	margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
.entry_wrap p.copy{
	margin-bottom: 10px;
}
}
@media screen and (max-width: 480px) {
.entry_wrap p.copy img{
	max-width: 240px;
}
}

.entry_wrap ul{
	max-width: 920px;
	margin: 0 auto 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between; 
}
@media screen and (max-width: 768px) {
.entry_wrap ul{
	margin-bottom: 10px;
}
}

.entry_wrap ul li{
	max-width: 450px;
	width: 49%;
}
@media screen and (max-width: 768px) {
.entry_wrap ul li{
	width: 100%;
	margin: 10px auto;
}
}

.entry_wrap p.caption{
	text-align: center;
	font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
.entry_wrap p.caption{
	font-size: 1.2rem;
}
}
@media screen and (max-width: 480px) {
.entry_wrap p.caption{
	font-size: 1.0rem;
}
}


/* mapWrap
======================================================================*/
.mapWrap {
	padding: 120px 0;
}
@media screen and (max-width: 768px) {
.mapWrap {
	padding: 80px 0 40px;
}
}

.mapWrap h3{
	margin-bottom: 40px
}
@media screen and (max-width: 768px) {
.mapWrap h3{
	margin-bottom: 20px
}
}

.mapWrap map{
	max-width: 874px;
	margin: 0 auto;
	padding: 80px 0;
}
@media screen and (max-width: 768px) {
.mapWrap map{
	padding: 40px 0;
}
}

