@charset "utf-8";
/* CSS Document */

/* =========================================================
============================================================
============================================================
Swidge.com
============================================================
============================================================
========================================================= */



/* KEY COLOR-------------------------------------------------
#B58392
------------------------------------------------------------*/



.main-visual {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

/* 背景画像専用レイヤー */
.main-visual::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("../images/main.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  transform: scale(1.08);
  animation: mainVisualZoomOut 7s cubic-bezier(0.22, 1, 0.36, 1) forwards;

  z-index: 0;
}
/* 上に重ねる要素は背景より前面へ */
.main-visual__top,
.main-visual__bottom {
  position: absolute;
  z-index: 1;
}

/* 読み込み時ズームアウト */
@keyframes mainVisualZoomOut {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}
.main-visual__top {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1008px, calc(100% - 40px));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 3vw, 64px);
}

/* ロゴ */
.main-visual__logo {
  flex: 0 1 96px;
  width: clamp(64px, 8vw, 96px);
  max-width: 96px;
  height: auto;
  display: block;
}

/* タイトル */
.main-visual__title {
  flex: 1 1 auto;
  width: min(100%, 744px);
  max-width: 744px;
  min-width: 0;
  height: auto;
  display: block;
}

/* 下段 */
.main-visual__bottom {
  position: absolute;
  left: 50%;
  bottom: 48px;
  transform: translateX(-50%);

  width: min(904px, calc(100% - 40px));
  height: auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .main-visual {
    min-height: 100svh;
  }

  .main-visual::before {
    background-position: 60% center;
    background-size: cover;
  }

  .main-visual__top {
    top: 46px;
    left: 43%;
    gap: 8px;
    width: calc(100% - 80px);
  }

  .main-visual__logo {
    max-width: 48px;
  }

  .main-visual__title {
    max-width: 100%;
  }

  .main-visual__bottom {
    bottom: 32px;
    width: calc(100% - 32px);
  }
}




/*------------------------------------------------------------
|
| Common
|
------------------------------------------------------------*/

* {
margin:0;
padding:0;
}


.sp {/* PCレイアウトでSPを消す*/
    display: none;
}
.pc {/* PCレイアウトでPCを表示*/
    display: block;
}
.parent{/* 上下センター*/
	display: flex;
	align-items: center;
}
.col{
	display: flex;
}
.col-between{
    display: inline-flex;
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
.sp {
    display: block;
}

.pc {
    display: none;
}
.col{
    display: block;
 }
.col-between{
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
 }

}


body {
    font-family: "Noto Sans JP","メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    word-wrap: break-word;/* 英字折り返し */
    overflow-wrap: break-word;
    background: rgb(246,242,234);
    background: linear-gradient(0deg, rgba(248,243,243,1) 0%, rgba(255,255,255,1) 100%);
    height: 100vh;
    background-attachment: fixed;
    color: #534852;
}

		
img{/* 画像の隙間をなくす */
    vertical-align: top;
}

a img:hover  {
	opacity: 0.5 ;
	transition: 0.8s ;
		}
a.ovimg{
	background-color:#FFF;
	display:inline-block;
	}
a.ovimg:hover img,
a.ovimg:active img{
    -moz-opacity: 0.7;
    opacity: 0.7;
    filter: alpha(opacity=70);
}
a img {/* リンク画像のボーダーを消す*/
	border: none;
}
a {/* FireFoxで点線を消す */
	outline: none;
}
.float-l {/* 回り込み左 */
	float: left;
}
.float-r {/* 回り込み右 */
	float: right;
}
.clear-both {/* 回り込み解除 */
	clear: both;
}
.center {/* 配置－中央 */
	text-align: center;
}
.right {/* 配置－右 */
	text-align: right;
}
.sp_t10 {/* 上にマージン */
	margin-top: 10px;
}
.sp_t20 {/* 上にマージン */
	margin-top: 20px;
}
.sp_t30 {/* 上にマージン */
	margin-top: 30px;
}
.sp_t40 {/* 上にマージン */
	margin-top: 40px;
}
.s_b180 {/* 上にマージン */
	margin-bottom:180px;
}
.sp_b20 {/* 下にマージン */
	margin-bottom: 20px;
}
.sp_b30 {/* 下にマージン */
	margin-bottom: 30px;
}
.sp_b40 {/* 下にマージン */
	margin-bottom: 40px;
}
.sp_b80 {/* 下にマージン */
	margin-bottom: 80px;
}
.sp_tb20 {/* 上下にマージン */
	margin-bottom: 20px;
	margin-top: 20px;
}
.sp_tb30 {/* 上下にマージン */
	margin-bottom: 30px;
	margin-top: 30px;
}
.sp_tb40 {/* 上下にマージン */
	margin-bottom: 40px;
	margin-top: 40px;
}
.sp_left_1 {/* 左にマージン */
	margin-left: 1rem;
}
.al-mid {/* 上下のセンタリング */
	display: table-cell;
	vertical-align: middle;
}
.img_50 img {/* 上下のセンタリング */
	width: 100%;
}

.img_80 img {
	width: 80%;
}


/*==========================================================
  GoogleMap
========================================================= */
#google_map {
position: relative;
width: 100%;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}
#google_map iframe,
#google_map object,
#google_map embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}




/*==========================================================
  リンクアイコン
========================================================= */

.windowicon-black {
    margin-right: 2px;
    padding-right: 2.5rem;
    background-repeat: no-repeat;
    background-position: 20px 10px;
    background-image: url(../images/w-icon-black.svg);
    background-size: 20px 24px;
    margin-left: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    padding-top: 0px;
    height: 32px;
    width: 32px;
    display: inline-block;
}




/*------------------------------------------------------------
|
| Header
|
------------------------------------------------------------*/

#top-head {
    display: none;
}
#contents_header {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.header-in {
    padding-top: 45px;
    height: 160px;
    background-color: #FFF;
    background-image: url(../images/head_back.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 1280px auto;
    text-align: center;
}
h1 {
    background-repeat: no-repeat;
    overflow: hidden;
    width: 600px;
    height: 96px;
    background-size: 600px auto;
    text-indent: -9999px;
    font-size: 0px;
    background-image: url(../images/header_title.svg);
    background-position: 0px 0px;
    margin-left: auto;
    margin-right: auto;
}
h2 {
    font-size: 2.2rem;
    letter-spacing: 0.2rem;
    font-weight: 300;
    color: #fff;
    text-align: center;
    position: relative;
    height: 146px;
    padding-top: 40px;
    margin-bottom: 72px;
    background-image: url(../images/h2_back.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (max-width: 980px) {
header {
    height: 100px;
}
.header-in {
    padding-top: 25px;
    height: 100px;
}

h1 {
    width: 80%;
    background-size: 90% auto;
}
}

@media screen and (max-width: 768px) {
header {
    height: 120px;
    z-index: 50;
}
.header-in {
    padding-top: 25px;
    height: 120px;
}
#contents_header {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
h1 {
    height: 96px;
    background-size: 70% auto;
    background-position: 20px 20px;
}
h2 {
    display: block;
    font-size: 1.8rem;
    height: 80px;
    margin: 0px 0px 0px 0px;
    padding-top: 32px;
    margin-bottom: 0px;


}
}


@media screen and (max-width: 500px) {
header {
    position: fixed;
    height: 96px;
    z-index: 50;
    box-shadow: 0px 5px 5px -5px rgba(0,0,0,0.5);
}
.header-in {
    padding-top: 25px;
    height: 100px;
}
#contents_header {
  width: 100%;
  height: 100px;
  overflow: hidden;
}
h1 {
    height: 96px;
    background-size: 90% auto;
    background-position: 0px 24px;
}
h2 {
    display: block;
    height: 180px;
    padding-top: 64px;
    margin-bottom: 0px;
    
}
}





/*------------------------------------------------------------
|
| footer
|
------------------------------------------------------------*/
footer {
    width: 100%;
    bottom: 0px;
    padding: 0px 0px 32px 0px;
    margin: 32px 0px 0px 0px;

}
footer .inner {
    width: 90%;
    max-width: 1200px; 
    display: flex;
    margin-right: auto;
    margin-left: auto;
    padding: 48px 0px 56px 0px;
    color: #2C2C2C;
}
footer .inner a {
    color: #744E62;
}


.footer_unei {
    width: 80%;
    margin-bottom: 15px;
    padding: 0% 0% 0% 5%;
    margin: 0px auto;
    text-align: center;
}
.jimukyoku_unei_tite {
    background-color:#B58392;
    color: #ffffff;
    padding: 6px 48px;
    display: inline;
    font-size: 0.8rem;
    font-weight: 400;
    border-radius: 9999px;
}
.footer_copyright {
    width: 956px;
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}


#page-top a {
    position: fixed;
    background: #B58392;
    text-decoration: none;
    font-family: "roboto", sans-serif;
    line-height: 30px;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    color: #fff;
    right: 10px;
    bottom: 50px;
    width: 60px;
    height : 60px;
    padding: 28px 5px;
    text-align: center;
    display: block;
    border-radius: 90px;
    opacity: 0.9;
    transition: all .3s ease;
}
#page-top a:hover {
    text-decoration: none;
    opacity: .5;
}
#page-top a:after{
    content:"";
    position:absolute;
    top:0;
    bottom:.1rem;
    top:-10px;
	left:25px;
    margin:auto;
    width: .5rem;
    height: .5rem;
    border-top: .15em solid #FFF;
    border-right: .15em solid #FFF;
    transform: rotate(315deg);
    transition:.3s;
}
#page-top a:hover:after{
    top:-14px;
}
@media screen and (max-width: 768px) {
footer .inner {
    display: block;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
	padding: 40px 0px 0px 0px;
}
.footer_jimukyoku,.footer_unei{
    width: 100%;
    padding-bottom: 10px;
}
.footer_unei {

    padding: 0% 0%;
}
}







/*------------------------------------------------------------
|
|  hamburger
|
------------------------------------------------------------*/
.hamburger {
    display: none;
    width: 60px;
    height: 60px;
    justify-content: center;
    flex-direction: row;
    cursor: pointer;
    background-color: #B58392;
    padding-top: 24px;
    z-index: 9999!important;
}
.hamburger .bar {
    width: 40px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    display: block;
    position: absolute;
    transition: all 0.3s;
}
.hamburger::after {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
    color: #fff;
    display: block;
    content: "MENU";
    font-size: 10px;
    margin-top: 20px;
}
.checkbox:checked ~ .hamburger::after {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
     color: #fff;
    display: block;
    content: "CLOSE";
    font-size: 10px;
    margin-top: 20px;
}
.hamburger .bar-top {
    transform: translate(0, -12px);
}
.hamburger .bar-bottom {
    transform: translate(0, 12px);
}
.checkbox:checked ~ .hamburger .bar-middle {
    opacity: 0;
}
.checkbox:checked ~ .hamburger .bar-top {
    transform: translate(0, 0) rotate(45deg);
}
.checkbox:checked ~ .hamburger .bar-bottom {
    transform: translate(0, 0) rotate(-45deg);
}
.checkbox {
    display: none;
}

@media screen and (max-width: 768px) {
.hamburger {display: flex;top: 0;right: 0;position: fixed;}
.checkbox:checked ~ .nav-menu {left: 0;}
}










/*------------------------------------------------------------
|
|  navi
|
------------------------------------------------------------*/
.navi-area {
    width: 240px;
    padding: 12px 16px 48px 16px;
    background: rgb(70,180,30);
    background: #B58392;
    border-radius: 20px 0px 0px 20px;

}
.nav-menu {
    margin-bottom:50px;
    position: sticky;
    position: -webkit-sticky;
    top: 20px;
    padding-bottom: 24px;
}
nav ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    display: block;
}
nav ul li a {
    font-size: 1.0rem;
    letter-spacing: 0.1rem;
    line-height: 1.5rem;
    width: 208px;  
    text-decoration: none;
    font-weight: 300;
    color: #fff;
    padding: 12px 30px 12px 12px;
    display: block;
    border-bottom: 1px solid #D1ABB7;
}
nav ul li a:hover {
    color: #FE9AB9;
}
nav ul li a:visited {
    color: #fff;
}
.nav-menu .none {
    font-size: 1.0rem;
    letter-spacing: 0.1rem;
    line-height: 1.5rem;
    text-decoration: none;
    font-weight: 300;
    color: #D1ABB7;
    padding: 12px 0px 12px 12px;
    display: block;
    border-bottom: 1px solid #D1ABB7;
}

@media screen and (max-width: 768px) {
.navi-area {
    width: 0px;
    padding: 0px;
    overflow: scroll;
}
.nav-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #B58392;
    opacity: 1;
    color: #fff;
    top: 0px;
    left: 100%;
    transition: all 0.5s;
    z-index: 100;
    padding-top: 56px;
  }
nav ul li a {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
}

.nav-menu .none {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
}
}
/* =========================================================
  GlobaoNavi-Arrow
========================================================= */
.nav-arrow {
    line-height: 1.25;
    text-decoration: none;
    position: relative;
    transition: .3s;
}
.nav-arrow:after{
    content:"";
    position:absolute;
    top:0;
    bottom:.1rem;
    right:12%;
    margin:auto;
    width: .5rem;
    height: .5rem;
    border-top: .1rem solid #fff;
    border-right: .1rem solid #fff;
    transform: rotate(45deg);
    transition:.3s;
}

.nav-arrow:hover:after{
	border-top: .1rem solid #FE9AB9;
    border-right: .1rem solid #FE9AB9;
    right:8%;
}


/* =========================================================
  GlobaoNavi-link-ppt
========================================================= */

.nav-link-ppt a {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 16px;
    text-align: center;
    background-color: #FF9A00;
    border: 2px solid #FFF;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 32px;
}
.nav-link-ppt a:hover {
  color: #FFF;
  border: 2px solid #FFF;
  background-color: #eb6456;
}.nav-link-ppt a:visited {
  color: #FFF;
}
@media screen and (max-width: 768px) {
.nav-link-ppt a {width: 80%;margin: 12px auto;}
}


/* =========================================================
  GlobaoNavi-link
========================================================= */

.nav-link a {
    width: 100%;
    transition: all 0.3s ease;
}
.nav-link img {
    margin: 16px 0px;
}
.nav-link a:hover {

}
@media screen and (max-width: 768px) {
.nav-link {
    width: 50%;
    margin: 12px auto;
    text-align: center;
}
}

/* =========================================================
  GlobaoNavi-Banner
========================================================= */
.nav-banner {
    border: 1px solid #333;
    margin: 12px 0px;
    padding: 0px;
    background-color: #F1F1F1;
}
.nav-banner img {
    width: 100%;
    padding: 0px;
}

@media screen and (max-width: 768px) {
.nav-banner {width: 80%;margin: 12px auto;}
}








/*------------------------------------------------------------
|
|  All
|
------------------------------------------------------------*/
.wraper {
    display: flex;
    width: 90%;
    max-width:  1240px;
    padding-top: 20px;
    margin-left: auto;
    margin-right: auto;
}
main {
    background-color: #FFF;
    width: calc(100% - 240px);
}
main .inner{
    width: 90%;
    margin: 0px 5% 64px 5%;
}

@media screen and (max-width: 768px) {
.wraper {display: block;width: 100%;padding-top: 0px;}
.top-main {margin-top: 40px;}
main {width: 100%;margin-left: auto;margin-right: auto;margin-top: -40px;}
main .inner{ width: 90%;margin: 32px auto;padding: 0px 0px 32px 0px;background-color: #FFFFFF;}
}










/*------------------------------------------------------------
|
|  Fonts
|
------------------------------------------------------------*/
.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.txt_just {
    text-align:justify;
}
.weight500 {
    font-weight:500
} 
.weight700 {
    font-weight:700
} 
a {
	color: #0084ff;
	text-decoration: underline;
	font-weight: normal;
	transition: .3s;
}
a:visited {
    color: #ff8c00;
}
a:hover {
    color: #70b8fb;
    font-weight: normal;
    text-decoration: none;
    transition: .3s;
}


h3 {
    position: relative;
    font-size: 1.5rem;
    font-weight: 500;
    border-bottom: 1px solid #F3E2E2;
    color: #755B57;
    line-height: 2.8rem;
    letter-spacing: 0.1rem;
    padding: 0.2rem 0.2rem 0.2rem 2.0rem;
    margin-top: 2.0rem;
    background-color: #F8F3F3;
}

h4 {
    font-size: 1.2rem;
    line-height: 1.5rem;
    color: #cb3632;
    font-weight: bold;
    margin-top: 1.4rem;
    margin-bottom: 1.2rem;
    border-left: 3px solid #cb3632;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    padding-left: 1.5rem;
    background-color: #F2F2F2;
}
h5 {
	font-size: 1.0rem;
	font-weight: bold;
	color: #346321;
	margin-bottom: 0px;
}

h6 {
    font-size: 1.0rem;
    color: #FFFFFF;
    line-height: 1.6rem;
    margin-top: 15px;
    padding: 6px;
    background-color: #519043;
    margin-bottom: 15px;
}
.txt_size_sss {/* 極小小の文字サイズ */
	font-size: 0.6rem;
	line-height: 1.4rem;
	letter-spacing: 0.1rem;
	padding-top: 1em;
}
.txt_size_ss {/* 極小の文字サイズ */
	font-size: 0.72rem;
	line-height: 1.4rem;
	letter-spacing: 0.1rem;
	padding-top: 1rem;

}
.txt_size_s {/* 小の文字サイズ */
	font-size: 0.95rem;
	line-height: 1.5rem;
	padding-top: 1rem;

}
.txt_size_m {/* 中の文字サイズ */
	font-size: 1.05rem;
	line-height: 2.0rem;
	padding-top: 0.8rem;
	letter-spacing: 0.15rem;
}
.txt_size_l {/* 大の文字サイズ */
	font-size: 1.2rem;
	line-height: 2.2rem;
	padding-top: 0.8rem;
	letter-spacing: 0.15rem;
}
.txt_size_ll {/* 大の文字サイズ */
	font-size: 1.4rem;
	line-height: 2.0rem;
	padding-top: 0.8rem;
	font-weight: bold;
	letter-spacing: 0.15rem;
}

.txt_li li {/* リスト項目 */
    line-height: 1.8rem;
    text-indent: 0rem;
    padding-left: rem;
    margin-left: 2rem;
}
.txt_li li {/* リスト項目 */
    list-style-type: disc;
}
.txt_li_none li {/* リスト項目none */
    list-style-type: none;
    line-height: 1.8rem;
    text-indent: -1.0rem;
    padding-left: 1.0rem;
    margin-bottom: 18px;
    border-bottom: 2px dotted #EBEBEB;
    padding-bottom: 13px;
}

.mi {/* 冒頭にスペース */
	text-indent: 1rem;
}
.mt {/* 2行目からスペース */
	line-height: 1.8rem;
	text-indent: -1rem;
	padding-left: 1rem;
}
.txt_ol {
    font-size: 1.0rem;
    line-height: 2.0rem;
    padding-top: 0.8rem;
    margin-left: 1rem;
}
.txt_ol li {
    margin-bottom: 0.5rem;
}
.txt_color_red {
	color: #F72608;
}
.txt_color_orange {
	color: #F78608;
}
.txt_color_white {
	margin: 5px;
	color: #FFFFFF;
}
.txt_color_gray {
	color: #B3B3B3;
}
.txt_color_blue{
	color: #005bac;
}
.txt_day {
	font-size: 1.3rem;
	line-height: 2.0rem;
	padding-top: 1rem;
	padding-left: 0.4rem;
	color: #FF6E00;
	font-weight: bold;
}

/*==========================================================
  二重取り消し線
========================================================= */
.del {
    background-image: linear-gradient(transparent 0.5em, #fe3464 0, #fe3464 calc(0.5em + 2px), transparent 0, transparent calc(0.5em + 3px), #fe3464 0, #fe3464 calc(0.5em + 5px), transparent 0);
    color: #888;
    text-decoration: none;
}



/*------------------------------------------------------------
|
| LAYOUT
|
------------------------------------------------------------*/



/*==========================================================
お問い合わせBOX
========================================================= */
.contact_box {
    background-color: #F5F5F5;
    border-radius: 18px;
    padding: 18px;
}

/*==========================================================
  注意事項の枠BOX
========================================================= */
.color-box01 {
    background-color: #EFEEE3;
    border-radius: 0px;
    padding: 18px;
    border: 4px solid #E88747;
}

/*==========================================================
  注意事項の枠BOX
========================================================= */
.color-box02 {
    background-color: #EFEEE3;
    border-radius: 0px;
    padding: 18px;
    border: 4px solid #DDCFC6;
}


/*==========================================================
  注意事項の枠BOX
========================================================= */
.color-box03 {
    border-radius: 0px;
    padding: 18px;
    border: 1px solid #D7D7D7;
    margin: 14px 0px;
}


/*==========================================================
  tableのcss
========================================================= */

.table_wrap {/* 横スクロールさせる場合はdivでくくる */
  overflow-x: scroll;
}
.line_table {
  width: 100%;
  min-width: 600px;
	margin: 0px;
	border: 1px solid #D0D0D0;
	border-collapse: collapse;
	background-color: #D0D0D0;  /* 背景色指定 */
}
.line_table th {
    padding: 15px;
    margin: 0px;
    border: 1px solid #D0D0D0;
    background-color: #53657f;  /* 背景色指定 */
    color: #F8F5E7;
}
.line_table td {
	padding: 15px;
	border: 1px solid #D0D0D0;
	background-color: #FFF;  /* 背景色指定 */
}



/*==========================================================
トップページNewsArea 
========================================================= */
#news_box {
    padding: 0px;
    height: 180px;
    overflow-x: hidden;
    overflow-y: scroll;
    margin-top: 20px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
}
#news_box ul {
    margin-top: 20px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding: 0px;
}
#news_box li {
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 9rem;
    margin-bottom: 10px;
    font-size: 0.9rem;
    list-style: none;
    letter-spacing: 0.1rem;
    background-repeat: no-repeat;
    padding-top: 8px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 200%;
    background-position: 0px 0px;
    text-indent: -9rem;
    width: 530px;
}
#news_box strong {
    font-weight: normal;
    color: #FFF;
    background-color: #FE9AB9;
    margin-top: 10px;
    margin-right: 10px;
    margin-left: 15px;
    padding-top: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    padding-left: 13px;
    border-radius: 9999px;
    font-family: 'Roboto', sans-serif;
}

@media screen and (max-width: 768px) {
#news_box {
    width: 80%;
	}
#news_box li {
    width: 95%;
}

#news_box {
    width: 100%;
	}
#news_box ul {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0rem;
    padding: 0px;
}
#news_box li {
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 10px;
    margin-bottom: 0px;
    font-size: 0.9rem;
    list-style: none;
    letter-spacing: 0.1rem;
    background-repeat: no-repeat;
    padding-top: 8px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 200%;
    background-position: 0px 0px;
    text-indent: 0rem;
    width: 96%;
}
#news_box strong {
	display: table;
	text-indent: 1rem;
	margin-left: 0px;
	margin-bottom: 2px;
	font-size: 0.9em;
	line-height: 1.0rem;
	padding-top: 0.5rem;
	padding-left: 0rem;
}
}


/*==========================================================
会長挨拶
========================================================= */

.greeting-col {
    max-width: 900px;
    display: flex;
flex-direction: row-reverse; 
}
.photo-box {
	width: 220px;
    margin: 0px 60px 30px 0px;
}
.greeting-col h3 {
	font-size: 1.2rem;
}
.photo-txt {
    max-width: 620px;
    text-align: left;
    margin-top: 2%;
    line-height: 1.2em;
    font-size: 1.1em;
}

@media screen and (max-width: 768px) {
.greeting-col {display: block;flex-direction: column-reverse; /* 通常は column */}
.photo-box {width:60%;margin-top: 0px;margin: auto;margin-bottom: 0px;}
.photo-box img {idth: 90%;margin: auto;}
.photo-txt {width: 90%;margin: 32px 0px 64px 0px;}
.photo-box {width: 90%;}
}



/*==========================================================
  BTN-large
========================================================= */
.btn-l {
  flex: 1 1 0;
  display: flex; 
  align-items: center;
  justify-content: center; 
  text-align: center;
  padding: 16px 20px;
  box-sizing: border-box;

  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;

  border-radius: 8px;
  transition: opacity 0.3s ease;
}
/* 中央揃え */
.btn-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
/* SVGアイコン（外部ファイル） */
.btn-text::before {
    content: "";
    display: inline-block;
    width: 2em;
    height: 2em;
    background-image: url(../images/arrow.svg); /* ←ここにSVGパス */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateX(0);
    transition: transform 0.3s ease;
}
.btn-l:hover .btn-text::before {
    transform: translateX(4px);
}
/*==========================================================
  BTN-small
========================================================= */
.btn-s {
    display: block;
    width: 60%;
    margin: 0 auto 16px;
    padding: 12px;
    box-sizing: border-box;
    font-size: 1.0rem;
    color: #fff;
    text-decoration: none;
    text-align: center;
    line-height: 1.6;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

/* 背景色 */
.btn-orange { background: #f08a24; }
.btn-green  { background: #4caf50; }
.btn-blue   { background: #2196f3; }
/* hover */
.btn-l:hover,.btn-s:hover{
    opacity: 0.8;
    color: #FFFFFF;
}
/* visit */
.btn-l:visited,.btn-s:visited{
    opacity: 0.8;
    color: #FFFFFF;
}

.line-table {
    margin: 0px;
    background-color: #D0D0D0;  /* 背景色指定 */
}
 
.line-table th {
    padding: 15px;
    margin: 0px;
    background-color: #E2E3D7;  /* 背景色指定 */
}
.line-table td {
    padding: 15px;
    background-color: #FFF;  /* 背景色指定 */
}


@media screen and (max-width: 768px) {
.btn-wrap {
    display: block;
}
.btn-l + .btn-l{
  margin-top: 20px;
}
}

