@charset "utf-8";

/* ----------------------------------------------------------

Common Setting

---------------------------------------------------------- */
/*pc + sp*/
.pc   {display:block}
.sp   {display:none}
@media only screen and (max-width:520px) {
.pc   {display:none}
.sp   {display:block}
}

div,h1,h2,h3,h4,h5,h6,p,ul,ol,li,dl,dt,dd  {
  word-break:break-all;
  padding:0;
  margin:0;
  box-sizing:border-box;
  outline:none;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

h1,h2,h3,h4,h5,h6   {
  font-weight:normal;
  padding:0;
  margin:0
}

/*ul dl*/
ul,ul li  {
  list-style:none;
  padding:0;
  margin:0
}

ol li  {
  margin-left: 1.5em;
}

/*text*/
.strong {
  font-weight: 600;
}

.red {
  color: #aa0000;
}

.green {
  color: #39a87f;
}

.large {
  font-size: 110%;
}

.xlarge {
  font-size: 120%;
}

.xxlarge {
  font-size: 130%;
}


.small {
  font-size: 90%;
  line-height: 1.5;
}

.xsmall{
  font-size: 80%;
  line-height: 1.5;
}

.xxsmall{
  font-size: 70%;
  line-height: 1.5;
}


/*position*/
.center {
  text-align:center
}

.left {
  text-align:left
}

.right  {
  text-align:right
}

.block  {
  display: block
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex_top {
  display: flex;
  flex-wrap: wrap;
  align-content: middle;
}

.flex_middle {
  display: flex;
  flex-wrap: wrap;
  align-content: top;
}

.flex_center_top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: top;
}

.flex_center_middle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: middle;
}

@media only screen and (max-width:520px) { 
  .flex,
  .flex_top,
  .flex_middle,
  .flex_center_top,
  .flex_center_middle {
    display: block;
  }
}


/*padding margin*/
.mt10 {
  margin-top: 10px!important;
}

.mt18 {
  margin-top: 18px!important;
}

.mt20 {
  margin-top: 20px!important;
}

.mt25 {
  margin-top: 25px!important;
}

.mt36 {
  margin-top: 36px!important;
}

.mt50 {
  margin-top: 50px!important;
}

.mb18 {
  margin-bottom: 18px!important;
}

.mb20 {
  margin-bottom: 20px!important;
}

.mb25 {
  margin-bottom: 25px!important;
}

.mb36 {
  margin-bottom: 36px!important;
}

.mb50 {
  margin-bottom: 50px!important;
}

.mt9 {
  margin-top: 9px!important;
}

.mr9 {
  margin-right: 9px!important;
}

.pt50 {
  padding-top: 50px!important;
}

.pb50 {
  padding-bottom: 50px!important;
}

.pd18 {
  padding: 18px!important;
}

.pd36 {
  padding: 36px!important;
}

.px18　{
  padding-left: 18px!important;
  padding-right: 18px!important;
}

.px36 {
  padding-left: 36px!important;
  padding-right: 36px!important;
}

.px54 {
  padding-left: 54px!important;
  padding-right: 54px!important;
}

.px72 {
  padding-left: 72px!important;
  padding-right: 72px!important;
}

.px90 {
  padding-left: 90px!important;
  padding-right: 90px!important;
}


/*link*/
a  {
  cursor:pointer;
  color: #222;
}

a:hover {
  cursor:pointer;
}

a.underline {
  text-decoration: none;
}

a.arrow {
  position: relative;
  text-decoration: underline;
}

a.arrow::after {
  content:'';
  top: 32.50%;
  margin-left: 5px;
  position: absolute;
  width: 18px;
  height:18px;
  background:url(../img/icon_arrow1.png) 100% 50% no-repeat;
  background-size: 18px;
}

@media only screen and (max-width:520px) {
  a.arrow::after {
    top: 22.50%;
  }
}

/*img*/
img {
  vertical-align:middle;
  -ms-interpolation-mode:bicubic;
  max-width:100%
}

.alignnone,
.alignleft,
.alignright,
.aligncenter  {
  max-width:100%;
  margin:0;
  width:auto
}

.alignnone  {
  margin-bottom:5px
} 

.alignleft  {
  display:inline;
  float:left;
  margin-top:5px;
  margin-right:50px;
  margin-bottom:50px
}

.alignright {
  display:inline;
  float:right;
  margin-top:5px;
  margin-left:50px;
  margin-bottom:50px
}

.aligncenter  {
  clear:both;
  display:block;
  margin-left:auto;
  margin-right:auto;
  text-align:center
}

.alignleft span {
  text-align: left;
}

.alignright span {
  text-align: right;
}

@media only screen and (max-width:520px) {
  .alignnone,
  .alignleft,
  .alignright,
  .aligncenter  {
    display:block;
    float:none;
    text-align:center;
    margin:1em auto
  }

  .alignleft span ,
  .alignright span {
    text-align: center;
  }

  .alignleft img ,
  .alignright img {
    margin: auto;
    text-align: center;
  }
}


pre {
  position:relative;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow: auto;
  background-color: #ededed;
  color: #000;
  padding: 18px;
  border-radius: 10px;
}

/* ----------------------------------------------------------

Btn Setting

---------------------------------------------------------- */
/*btn*/
.btn, 
input[type=submit]  {
  display:block;
  text-align:center;
  text-decoration:none;
  position:relative;
  font-size:100%;
  line-height:normal;
  font-weight:bold;
  cursor:pointer;
  transition: all .3s;
}

.btn_primary {
  display: block;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  background-color: #39a97f;
  text-decoration:none;
}


.btn_arrow {
  display: block;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  background-image: url(../img/icon_arrow2.png);
  background-repeat: no-repeat;
  background-position:96% 55%;
  background-size: 16px;
}

.btn_round {
  border-radius: 40px;
}

.btn_radius10 {
  border-radius: 10px;
}

.btn_radius20 {
  border-radius: 20px;
}



/* ----------------------------------------------------------

Table Setting

---------------------------------------------------------- */
/*size*/
table  {
  border-spacing: 0;
  border-collapse: collapse;
}

  table.size_full  {
    width: 100%;
  }

  table.size_one_half  {
    width: 50%;
  }

  table.size_one_third  {
    width: 33.33333333333333%;
  }

  table.size_one_quarter  {
    width: 25%;
  }

  table.size_one_fifth  {
    width: 20%;
  }

table tbody td a {
  color: #39a97f;
  text-decoration: underline; 
}

table thead th , 
table tbody th ,
table tbody td  {
  box-sizing: border-box;
}

/*default*/
table.default {
  border: 1px dotted #aaa;
}

.default thead th {
  padding: 18px;
  border: 1px dotted #aaa;
  text-align: center;
}

.default tbody th {
  background:#ebf7f2;
  padding: 18px;
  border: 1px dotted #aaa;
  text-align: left;
}

.default tbody td {
  background:#fff;
  padding: 18px;
  border: 1px dotted #aaa;
  text-align: left;
}


/*border_dotted*/
.border_dotted thead th {
  padding: 18px;
  border-bottom: 1px dotted #999;
  text-align: center;
}

.border_dotted tbody th,
.border_dotted tbody td {
  padding: 18px;
  border-bottom: 1px dotted #999;
  text-align: left;
}

.border_dotted tbody th.center,
.border_dotted tbody td.center {
  text-align: center;
}

@media only screen and  (max-width:520px) {
  .border_dotted.responsive tbody th {
    border-bottom: none;
    padding: 18px 0 0 0;
    width: 100%;
    display: block;
    position: relative;
  }

  .border_dotted.responsive tbody td {
    padding: 0 0 18px 0;
    width: 100%;
    display: block;
    position: relative;
  }

}


/*border_solid*/
.border_solid thead th {
  padding: 18px;
  border-bottom: 1px solid #999;
  text-align: center;
}

.border_solid tbody th,
.border_solid tbody td {
  padding: 18px;
  border-bottom: 1px solid #999;
  text-align: left;
}

.border_solid tbody th.center,
.border_solid tbody td.center {
  text-align: center;
}


@media only screen and  (max-width:520px) {
  .border_solid.responsive tbody th {
    border-bottom: none;
    padding: 18px 0 0 0;
    width: 100%;
    display: block;
    position: relative;
  }

  .border_solid.responsive tbody td {
    padding: 0 0 18px 0;
    width: 100%;
    display: block;
    position: relative;
  }

}

/* Add 2023.10.19 using footer */
/*footer_table*/
.footer_table {
	color: #fff;
}
.footer_table thead th {
  padding: 2px 4px;
  border: none;
  text-align: center;
}

.footer_table tbody th,
.footer_table tbody td {
  padding: 2px 4px;
  border: none;
  text-align: left;
}

.footer_table tbody th.center,
.footer_table tbody td.center {
  text-align: center;
}

@media only screen and  (max-width:520px) {
  .footer_table.responsive tbody th {
    border-bottom: none;
    padding: 4px 0 0 0;
/*    width: 100%;
    display: block;*/
    position: relative;
  }

  .footer_table.responsive tbody td {
    padding: 0 0 4px 0;
/*    width: 100%;
    display: block;*/
    position: relative;
  }
}

/* ----------------------------------------------------------

Form Setting

---------------------------------------------------------- */
/*form reset*/
input[type=submit],
button[type=submit] {
  appearance:none!important;
  cursor:pointer!important;
  outline:none!important;
  box-sizing:border-box!important;
  border:none!important;;
}

input[type=text],
input[type=email],
input[type=password],
input[type=url],
input[type=tel],
textarea {
  appearance:none;
  outline:none;
  border-radius: 10px;
  border:1px solid #9e9e9e;
  padding:16px ;
  line-height: 1;
  box-sizing:border-box;
  min-height:30px;
}

.select select {
  box-sizing:border-box;
  width: 100%;
  outline: none;
  border:none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  appearance: none;
  padding: 12px ;
  font-size: 100%;
  color: #000;
}

.select select::-ms-expand {
  display: none;
}

.select {
  position: relative;
  border-radius: 10px;
  border:1px solid #9e9e9e;
  box-sizing:border-box;
  min-height:40px;
  width: 100%;
}

.select::before {
  position: absolute;
  top: 45%;
  right:20px;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #000;
  pointer-events: none;
}

::-webkit-input-placeholder {
  color:#aaa;
}
:-ms-input-placeholder {
  color:#aaa;
}
::placeholder{
  color:#aaa
}

.checkbox label {
  margin-right: 10px;
}

.checkbox input[type="checkbox"] {
  transform: scale(1.25);
}


/* ----------------------------------------------------------

Layout Setting

---------------------------------------------------------- */
body        {
  position: relative;
  font-feature-settings:"palt" 1;
  line-break:strict!important;
  overflow-wrap:break-word!important;
  word-wrap:break-word!important;
  box-sizing:border-box;
  width:100%;
  color: #222;
  font-size: 18px;
  line-height: 2;
  font-weight: normal;
  padding:0;
  margin:auto;
}

.container_fluid  {
  width:100%;
  max-width: 1980px;
  margin:auto;
}

.container  {
  width:1180px;
  max-width: 1980px;
  margin:auto;
}

.container_middle {
  max-width:1024px;
  margin:auto;
}

.container_narrow {
  max-width:980px;
  margin:auto;
}

.container_xnarrow  {
  max-width:880px;
  margin:auto;
}

.container_xxnarrow {
  max-width:640px;
  margin:auto;
}

.container_xxxnarrow {
  max-width:520px;
  margin:auto;
}

.container_xxxxnarrow {
  max-width:480px;
  margin:auto;
}

.container_xxxxxnarrow {
  max-width:380px;
  margin:auto;
}

@media only screen and (max-width:960px) {
  body  {
    font-size:100%;
    min-width:1px;
    -webkit-text-size-adjust:100%;
    -webkit-overflow-scrolling:touch;
  }

  .container_wide,
  .container,
  .container_middle,
  .container_narrow,
  .container_xnarrow,
  .container_xxnarrow,
  .container_xxxnarrow,
  .container_xxxxnarrow,
  .container_xxxxxnarrow {
    width:100%;
    max-width:100%;
    padding-left:1em;
    padding-right:1em;
    box-sizing:border-box
  }
}

/* ----------------------------------------------------------

Header Setting

---------------------------------------------------------- */
/*topbar*/
.topbar  {
  width: 100%;
  background: #ffff;
}

.topbar_container  {
  height:80px ;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.topbar_left  {
  flex-basis: calc(100% - 340px);
  text-align: left;
}

.topbar_right  {
  flex-basis: 340px;
  text-align: right;
}

.topbar_left .logo img {
  width: 348px;
  height: auto;
}

.topbar_right span  {
  width: 340px;
  display: block;
}

.topbar_right span a  {
  display: block;
  height:80px ;
  background-image: url(../img/icon_member.png);
  background-repeat: no-repeat;
  background-position: 60px 50%;
  background-size:20px ;
  background-color: #39a97f;
  text-align: center;
  font-weight: 600;
  color: #fff;
  font-size: 23px;
  line-height: 2.57;
  padding:10px 60px;
  box-sizing: border-box;
  text-indent: 30px;
  text-decoration:none;
}

@media only screen and (max-width:520px) {
  .topbar_container  {
    height:60px ;
  }

  .topbar_left  {
    flex-basis:256px
  }

  .topbar_right  {
    flex-basis: 0;
    display: none;
  }

  .topbar_left .logo img {
    width: 256px;
    margin:-10px 0 0;
  }

  .topbar_right span  {
    width: 0;
  }

  .topbar_right span a  {
    display: none;
  }

  .gnav_sp .menu6  a  {
    display: block;
    background-image: url(../img/icon_member.png);
    background-repeat: no-repeat;
    background-position: 5px 50%;
    background-size:14px ;
    color: #fff;
    text-indent: 22px;
  }

}


/*topbar_nav*/
.topbar_nav {
  width: 100%;
}

.topbar_nav .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.topbar_nav .menu li {
  flex-basis: 20%;
}

  .topbar_nav .menu li.menu1 {
    flex-basis: 19%;
  }

  .topbar_nav .menu li.menu2 {
    flex-basis: 19%;
  }

  .topbar_nav .menu li.menu3 {
    flex-basis: 24%;
  }

  .topbar_nav .menu li.menu4 {
    flex-basis: 19%;
  }

  .topbar_nav .menu li.menu5 {
    flex-basis: 19%;
  }

.topbar_nav .menu li a {
  width: 100%;
  position: relative;
  display: block;
  text-decoration: none;
  color: #222;
  font-size: 20px;
  line-height:2;
  font-weight: 500;
  padding: 76px 0 24px;
  text-align: center;
  transition: all 0.3s;
}

.topbar_nav .menu li a:before {
  content: '';
  top: 30px;
  width: 100%;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
}

.topbar_nav .menu li a:hover {
  background-color: #39a97f;
  color: #fff;
}

  .topbar_nav .menu li.menu1 a:before {
    background-image: url(../img/icon_menu1.png);
    left: calc(50% - 20px);
    background-size:40px ;
  }

  .topbar_nav .menu li.menu1 a:hover:before {
    background-image: url(../img/icon_menu1_w.png);
  }

  .topbar_nav .menu li.menu2 a:before {
    background-image: url(../img/icon_menu2.png);
    background-size:31.8px ;
    left: calc(50% - 16.4px);
  }

  .topbar_nav .menu li.menu2 a:hover:before {
    background-image: url(../img/icon_menu2_w.png);
  }

  .topbar_nav .menu li.menu3 a:before {
    background-image: url(../img/icon_menu3.png);
    background-size:31.8px ;
    left: calc(50% - 16.4px);
  }

  .topbar_nav .menu li.menu3 a:hover:before {
    background-image: url(../img/icon_menu3_w.png);
  }

  .topbar_nav .menu li.menu4 a:before {
    background-image: url(../img/icon_menu4.png);
    background-size:44.8px ;
    left: calc(50% - 22.4px);
  }

  .topbar_nav .menu li.menu4 a:hover:before {
    background-image: url(../img/icon_menu4_w.png);
  }

  .topbar_nav .menu li.menu5 a:before {
    background-image: url(../img/icon_menu5.png);
    background-size:35.9039px ;
    left: calc(50% - 17.9px);
  }

  .topbar_nav .menu li.menu5 a:hover:before {
    background-image: url(../img/icon_menu5_w.png);
  }


/*nav*/
nav.gnav_sp {
  display:none
}

@media only screen and (max-width:520px) {
  .topbar_nav {
    display: none;
  }

  nav.gnav_sp {
    display:block;
    position:fixed;
    top:0;
    right:-60%;
    bottom:0;
    width:60%;
    background:#39a97f;
    overflow-x:hidden;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    transition:all .5s;
    z-index:3000000;
    opacity:0;
  }

  .open nav.gnav_sp {
    right:0;
    opacity:1
  }

  nav.gnav_sp .inner  {
    padding:0
  }
  
  nav.gnav_sp .inner ul {
    list-style:none;
    margin:1.5em 0 0;
    padding:1em
  }

  nav.gnav_sp .inner ul li  {
    position:relative;
    margin:0;
    text-align:left
  }
  
  nav.gnav_sp .inner ul li a   {
    display:block;color:#fff;
    box-sizing:border-box;
    font-size:18px;
    line-height: 2;
    padding:24px 5px;
    text-decoration:none;
    transition-duration:0.2s;
    border-bottom:1px solid rgba(255,255,255,0.5)
  }

  nav.gnav_sp ul li span img   {
    margin-right:0.5em
  }

  .toggle_btn {
    display:block;
    position:fixed;
    right:1em;
    top:15px;
    width:30px;
    height:30px;
    transition:all .5s;
    cursor:pointer;
    z-index:200000000;
  }

  .toggle_btn span {
    display:block;
    position:absolute;
    right:0;
    width:40px;
    height:2px;
    background-color:#39a97f;
    border-radius:0;
    transition:all .5s;
  }

  .toggle_btn span:nth-child(1) {top:4px}
  .toggle_btn span:nth-child(2) {top:14px}
  .toggle_btn span:nth-child(3) {bottom:4px}

  .open .toggle_btn span  {
    background-color:#fff
  }

  .open .toggle_btn span:nth-child(1) {
    -webkit-transform:translateY(10px) rotate(-315deg);
    transform:translateY(10px) rotate(-315deg)
  }

  .open .toggle_btn span:nth-child(2) {
    opacity:0
  }

  .open .toggle_btn span:nth-child(3) {
    -webkit-transform:translateY(-10px) rotate(315deg);
    transform:translateY(-10px) rotate(315deg)
  }
}

/*mask*/
#mask         {display:none;transition:all .5s}
.open #mask   {display:block;position:fixed;top:0;right:0;width:100%;height:100%;z-index:200000;cursor:pointer}

/*home_mainvisual*/
.slider {
  width:100%;
  margin:auto;
}

.slider img   {
  width:100%;
  height:auto;
}

.slick-prev:before,
.slick-next:before {
  color:rgba(100,100,100,0.5);
  font-size:40pt
}

.slick-prev {
  left:2.5%;
  z-index:10
}

.slick-next {
  right:5%
}

.slick-dots ,
.slick-dots li,
.slick-dots li button,
.slick-dots li button:before  {
  display: none;
}

@media only screen and (max-width:520px) {
  .slick-prev {
    left:0%;
  }

  .slick-next {
    right:10%
  }
}


/*mainvisual*/
.mainvisual {
  width: 100%;
  height: 250px;
  position: relative;
}

.mainvisual_container {
  width: 100%;
  height: 250px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.mainvisual_title  {
  flex-basis: 100%;
  text-align: center;
  margin: auto;
}

.mainvisual_title span {
  display: block;
  font-size: 44px;
  line-height: 2;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin: auto;
}


@media only screen and (max-width:520px) {
  .mainvisual,
  .mainvisual_container {
    width: 100%;
    height: 200px;
  }

  .mainvisual_title span {
    font-size: calc(46px / 1.6);
  }

}

/* ----------------------------------------------------------

Section Setting

---------------------------------------------------------- */
/*section*/
.section    {
  border-bottom: 1px solid #999;
  padding: 50px 0
}

.bg1 {
  width: 100%;
  background: #fff;
}

.bg2 {
  width: 100%;
  background:#ebf7f2;
}

.bg3 {
  width: 100%;
  background: #39a97f;
}

.section_title {
  text-align: center;
  margin:auto auto 18px;
}

.section_title span {
  display: block;
  font-size:36px;
  line-height: 2;
  font-weight: 600;
  text-align: center;
  margin: auto;
}

.section_body p a {
  color: #39a97f;
  text-decoration: underline; 
}

.section_body .disc li {
  list-style: disc
}

.section_body .indent_1em {
  padding-left:0;
  text-indent:-1em;
}

  .section_body .indent_1em.disc li {
    text-indent: 0em
  }


@media only screen and (max-width:520px) {
  .section    {
    padding:25px 0
  }

  .section_title span {
    font-size:calc(36px / 1.5);
  }

}

/*section_box*/
.section_box1  {
  width: 100%;
  border-radius:20px;
  border:1px solid #39aa7f;
}

.section_box1 .section_box_head  {
  width: 100%;
  background: #39aa7f;
  border-radius: 20px 20px 0 0;
}

.section_box1 .section_box_head span {
  display: block;
  text-align: center;
  font-size:22px ;
  line-height: 2;
  color: #fff;
  font-weight: 600;
  padding: 18px;
}

.section_box1 .section_box_body {
  width: 100%;
  background: #fff;
  padding:24px 36px  ;
  border-radius:0 0 20px 20px;
}

.section_box2  {
  border-radius:20px;
  background:#ebf7f2;
  padding:36px;
}

@media only screen and (max-width:520px) {
  .section_box1 .section_box_head span {
    font-size:calc(22px - 5px) ;
    padding: 10px;
  }

  .section_box1 .section_box_body {
    padding:12px 18px ;
  }

  .section_box2  {
    padding:18px;
  }
}

/*bread*/
.bread {
  padding: 18px 0;
  border-bottom: 1px solid #999;
}

.bread p {
  font-size: 16px;
  line-height: 1.7;
}

.bread p a {
  text-decoration: underline;
}

@media only screen and (max-width:520px) {
  .bread {
    margin-bottom: 25px
  }

  .bread p {
    font-size: 15px;
  }

}

/*common_service*/
.common_service {
  width: 100%;
  padding: 50px 0 ;
  border:none;
  margin-top: -1px;
  position: relative;
}

  .bg1.common_service {
    margin-top:0;
  }

.common_service_title {
  margin: auto;
  text-align: center;
}

.common_service_title span {
  display: block;
  text-align: center;
  font-size:38px ;
  line-height: 2;
  font-weight: 600;
}

.common_service_list {
  margin: 50px auto 25px;
}

.common_service_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.common_service_list ul li {
  border:1px solid #39aa7f;
  border-radius:20px;
}

  .common_service_list ul li.service1,
  .common_service_list ul li.service2 {
    flex-basis: 576px;
    margin-bottom: 26px;
  }

  .common_service_list ul li.service3,
  .common_service_list ul li.service4,
  .common_service_list ul li.service5 {
    flex-basis: 380px;
  }

.common_service_list ul li a {
  display: block;
  text-decoration: none;
  font-weight: 500;
}

.common_service_list ul li .common_service_img,
.common_service_list ul li .common_service_img img {
  display: block;
  border-radius:20px 20px 0 0;
}

.common_service_list ul li .common_service_text  {
  text-align: center;
  background-color: #fff;
  background-image: url(../img/icon_arrow1.png);
  background-repeat: no-repeat;
  background-position:95% 52.5%;
  background-size: 21.9px;
  border-radius:0 0 20px 20px;
  padding: 20px 0;
}

.common_service_list ul li .common_service_text span {
  text-align: center;
  display: block;
  font-weight: 500;
  line-height: 1.7;
}

  .common_service_list ul li.service1 .common_service_text span,
  .common_service_list ul li.service2 .common_service_text span {
    font-size: 22px;
  }

  .common_service_list ul li.service3 .common_service_text span,
  .common_service_list ul li.service4 .common_service_text span,
  .common_service_list ul li.service5 .common_service_text span {
    font-size: 20px;
  }

@media only screen and (max-width:520px) {
  .common_service {
    padding: 25px 0 0;
  }

  .common_service_title span {
    font-size:calc(38px / 1.5) ;
  }

  .common_service_list {
    margin: 25px auto ;
  }

  .common_service_list ul li.service1,
  .common_service_list ul li.service2,
  .common_service_list ul li.service3,
  .common_service_list ul li.service4,
  .common_service_list ul li.service5 {
    flex-basis: 100%;
    margin-bottom: 18px;
  }

  .common_service_list ul li .common_service_text  {
    background-image: url(../img/icon_arrow1.png);
    background-repeat: no-repeat;
    background-position:95% 52.5%;
    background-size: 16px;
    padding: 10px 0;
  }

  .common_service_list ul li.service1 .common_service_text span,
  .common_service_list ul li.service2 .common_service_text span,
  .common_service_list ul li.service3 .common_service_text span,
  .common_service_list ul li.service4 .common_service_text span,
  .common_service_list ul li.service5 .common_service_text span {
    font-size: calc(20px - 2px);
  }
}


/*common_about*/
.common_about {
  width: 100%;
  padding: 50px 0 ;
  border:none;
  margin-top: -1px;
  position: relative;
}

  .bg1.common_about {
    margin-top:0;
  }

.common_about_title {
  margin: auto;
  text-align: center;
}

.common_about_title span {
  display: block;
  text-align: center;
  font-size:38px ;
  line-height: 2;
  font-weight: 600;
}

.common_about_body p.leed {
  text-align: center;
  display: block;
  font-size: 18px;
  line-height:2;
  font-weight: 400;
  margin: 25px auto ;
}

.common_about_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  margin: 18px auto;
}

.common_about_list ul li {
  flex-basis: 380px;
  border:1px solid #39aa7f;
  border-radius:20px;
  text-align: center;
}

.common_about_list ul li a {
  display: block;
  text-decoration: none;
}

.common_about_list ul li .common_about_text {
  text-align: center;
  background-color: #fff;
  background-image: url(../img/icon_arrow1.png);
  background-repeat: no-repeat;
  background-position:95% 52.5%;
  background-size: 21.9px;
  border-radius:20px ;
  padding:40px 0 ;
  font-weight: 500;
}

@media only screen and (max-width:520px) {
  .common_about {
    width: 100%;
    padding: 0 ;
  }

  .common_about_title span  {
    font-size:calc(38px / 1.5);
  }

  .common_about_body p.leed {
    font-size: 16px;
    margin: 18px auto ;
    text-align: left;
  }

  .common_about_list ul li {
    flex-basis: 100%;
    margin-bottom: 10px;
  }

  .common_about_list ul li .common_about_text {
    background-image: url(../img/icon_arrow1.png);
    background-repeat: no-repeat;
    background-position:95% 52.5%;
    background-size: 16px;
    padding: 24px 0;
  }

}


/* ----------------------------------------------------------

HOME

---------------------------------------------------------- */
/*home_news*/
.home_news {
  width: 100%;
  padding: 25px 0 50px;
}

.home_news_title {
  width: 100%;
  border:1px solid #39aa7f;
  background: #39aa7f;
  border-radius: 20px 20px 0 0;
}

.home_news_title span {
  display: block;
  text-align: center;
  font-size:30px ;
  line-height: 2;
  color: #fff;
  font-weight: 600;
  padding: 18px;
}

.home_news_body {
  width: 100%;
  border:1px solid #39aa7f;
  background: #fff;
  border-radius:0 0 20px 20px;
  padding:25px 0 ;
}

.home_news_container {
  overflow-y: scroll;
  max-height: 400px;
}


.home_news_list dl {
  border-bottom: 1px dashed #ccc;
  padding: 20px 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
}

  .home_news_list dl:nth-last-child(1) {
    border-bottom: none;
  }

.home_news_list dl dt {
  flex-basis: 160px;
  font-size: 18px;
  line-height: 2;
}

.home_news_list dl dd {
  flex-basis:calc(100% - 160px);
  font-size: 18px;
  line-height: 2;
}

.home_news_list dl dd a {
  color: #39a97f;
  text-decoration: underline; 
}

.home_news_list dl dd a:hover {
  color: #222;
}

.home_news_list dl dd a:hover {
  text-decoration: none; 
}


@media only screen and (max-width:520px) {
  .home_news {
    width: 100%;
    padding: 0 0 25px;
  }

  .home_news_title span {
    font-size:calc(30px / 1.5);
    padding: 6px;
  }

  .home_news_body {
    padding:6px;
  }

  .home_news_container {
    overflow-y: scroll;
    max-height: 400px;
  }

  .home_news_list dl {
    padding: 10px 0;
  }

  .home_news_list dl dt ,
  .home_news_list dl dd {
    flex-basis: 100%;
    font-size: 16px;
  }

  .home_news_list dl dt {
    font-weight: 600;
  }

}



/* ----------------------------------------------------------

Page

---------------------------------------------------------- */
/*access_map*/
.access_map {
  width:100%;
  margin:auto;
  padding:0
}

.access_map iframe  {
  width:100%;
  height:430px;
  border:none
}

@media only screen and (max-width:520px) { 
  .access_map {
    width:100%;
    margin:auto;
    padding:0
  }

  .access_map iframe  {
    width:100%;
    height:256px;
    border:none
  }
}

/*link*/
.link_list  {
  padding-top: 50px;
  padding-bottom: 50px;
}

.link_list li {
  display: inline-block;
  width: 49.5%;
  vertical-align: top;
  padding-bottom: 36px;
}

@media only screen and (max-width:520px) { 
  .link_list  {
    padding-top: 0;
    padding-bottom: 0;
  }

  .link_list li {
    display: block;
    width: 100%;
    padding-bottom: 18px;
  }

}

/*holiday*/
.images_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.images_list ul li {
  flex-basis:30% ;
  margin: 18px auto;
}

@media only screen and (max-width:520px) { 
  .images_list ul li {
    flex-basis:48.5% ;
    margin: 6px 0;
  }

}


/* ----------------------------------------------------------

Member

---------------------------------------------------------- */
/*login*/
.login {
  padding: 50px 0 
}

.login_form {
  border-radius:20px;
  border:1px solid #39aa7f;
  background:#fff;
  padding:54px 36px ;
  border-radius:20px;
}

.login_form .label {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.login_form input[type=text] ,
.login_form input[type=password] {
  width:100%;
  font-size:100%
}

.login_btn  {
  margin: 18px auto auto;
  text-align: center;
}

.login_text {
  font-size: 16px;
  line-height:1;
  margin:16px auto auto;
}

.login_btn input[type=submit]  {
  margin:  auto;
  text-align: center;
  font-size: 18px;
  line-height: 1.2345;
  padding: 18px 48px;
}


@media only screen and (max-width:520px) { 
  .login {
    padding: 25px 0;
  }

  .login_form {
    padding:24px 18px;
  }

  .login_btn input[type=submit]  {
    margin: auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.2345;
    padding: 18px 48px;
  }

}


/* ----------------------------------------------------------

Search

---------------------------------------------------------- */
/*search_form*/
.search_form  {
  padding: 25px 0 ;
}

.search_form table th  {
  width: 13%;
}

.search_form input[type=text] ,
.search_form select {
  width: 100%
}

.search_btn  {
  margin: 18px auto auto;
  text-align: center;
}

.search_btn input[type=submit]  {
  margin:  auto;
  text-align: center;
  font-size: 18px;
  line-height: 1.2345;
  padding: 24px 48px;
}


@media only screen and (max-width:520px) { 
  .search_form  {
    padding:  0 ;
  }

  .search_form table th  {
    width: 100%;
  }

  .search_form input[type=text] ,
  .search_form select {
    width: 100%
  }

  .search_btn  {
    margin: 18px auto auto;
    text-align: center;
  }

  .search_btn input[type=submit]  {
    margin:  auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.2345;
    padding: 24px 48px;
  }
}


/*search_list*/
.search_list  {
  padding: 25px 0 ;
}

.search_list ul li {
  display: inline-block;
  vertical-align: top;
  margin:0 8px 18px 0;
}

.search_list ul li a {
  display: block;
  text-decoration: none;
  color: #39a97f;
  background-color: #fff;
  border:1px solid #39a97f;
  text-align: center;
  box-sizing: border-box;
  border-radius: 40px;
  padding: 12px 24px;
  transition: all .3s;
}

.search_list ul li a:hover {
  color: #fff;
  background-color: #39a97f;
  border:1px solid #39a97f;
}


@media only screen and (max-width:520px) { 
  .search_list  {
    padding:  0 ;
  }

  .search_list ul li {
    vertical-align: top;
    margin:0 6px 12px 0;
  }


  .search_list ul li a {
    border-radius: 40px;
    padding:6px 12px ;
    transition: all .3s;
    font-size: 15px;
  }

}


/*search_table*/
.search_table {
  padding: 25px 0;
}

.search_table table tbody th  {
  width: 13%;
}

.search_table table tbody td a  {
  color: #39a97f;
  margin-right:18px;
}


@media only screen and (max-width:520px) { 
  .search_table {
    padding: 0;
  }

}


/* ----------------------------------------------------------

Aside

---------------------------------------------------------- */
/*link*/
.aside.link {
  padding: 45px 0;
  text-align: center;
  margin: auto;
  border:none;
  margin-top: -1px;
  position: relative;
}

.aside_link_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.aside_link_list ul li {
  flex-basis: 280px;
}

.aside_link_list ul li img {
  width: 100%;
  height: auto;
}


@media only screen and (max-width:520px) {
  .aside.link {
    padding: 18px 0 25px;
  }

  .aside_link_list ul li {
    flex-basis: 48%;
    text-align: center;
    margin: auto;
  }

  .aside_link_list ul li img {
    text-align: center;
    margin: 8px auto auto;
  }

}


/* ----------------------------------------------------------

Footer

---------------------------------------------------------- */
/*footer*/
.footer {
  padding: 64px 0 36px;
}

.footer_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.footer_info,
.footer_sitemap {
  flex-basis: 50%;
}

.footer_logo {
  display: block;
}

.footer_logo img {
  width: 380px;
  height: auto;
}

.footer_text {
  color: #fff;
  font-size: 17.2px;
  line-height:2;
  font-weight: 400;
  margin-top: 18px;
}

.footer_sitemap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  margin-top: -8px;
}

.footer_sitemap_left {
  flex-basis: 236px;
}

.footer_sitemap_right {
  flex-basis: 222px
}

.footer_sitemap span.title {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height:2;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}

.footer_sitemap ul  {
  margin-top: 12px
}

.footer_sitemap ul li {
  color: #fff;
  font-size: 18px;
  line-height:2.2345;
  background-image: url(../img/icon_arrow2.png);
  background-repeat: no-repeat;
  background-position:100% 52.5%;
  background-size: 12.97px;
}

.footer_sitemap ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-weight: 400;
}

.footer_copyright {
  text-align: center;
  margin: 36px auto auto;
}

.footer_copyright address {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15.25px;
  line-height:2;
  font-style: normal;
  font-weight: 300;
}



@media only screen and (max-width:520px) {
  .footer {
    padding: 36px 0 ;
  }

  .footer_info {
    flex-basis: 100%;
    order: 2;
    padding-top: 36px;
  }

  .footer_sitemap {
    flex-basis: 100%;
    order: 1;
  }

  .footer_logo {
    display: block;
    text-align: center;
    margin: auto;
  }

  .footer_logo img {
    width: 256px;
    text-align: center;
    margin: auto;
  }

  .footer_text {
    font-size: 16px;
    text-align: center;
    margin: auto;
    margin-top: 18px;
  }

  .footer_sitemap {
    margin-top: 0;
  }

  .footer_sitemap_left,
  .footer_sitemap_right {
    flex-basis: 100%;
  }

  .footer_sitemap span.title {
    font-size:18px;
    line-height:2;
    font-weight: 600;
    padding-bottom: 10px;
  }

  .footer_sitemap ul  {
    margin-top: 12px;;
    margin-bottom: 18px;
  }

  .footer_sitemap ul li {
    color: #fff;
    font-size: 16px;
    line-height:3;
    background-image: url(../img/icon_arrow2.png);
    background-repeat: no-repeat;
    background-position:100% 52.5%;
    background-size: 12px;
  }

  .footer_copyright {
    text-align: center;
    margin: 18px auto auto;
  }

  .footer_copyright address {
    font-size: 13px;
    font-weight: 300;
  }

}


