﻿@charset "utf-8";

/*====================================================================================================

  Layout

    1.  Header
    2.  Navigation
    3.  Contents
    4.  Footer

====================================================================================================*/


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

  1. Header
  
----------------------------------------------------------------------------------------------------*/

header {
  width: 100%;
  margin: 0 auto;
}

.l-hd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
	background-color: var(--color-white);
}

.l-gNav-wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}

.l-hd-conad {
  line-height: 1.5;
}

.l-hd-tel, .l-hd-accessBtn {
  display: inline-block;
  vertical-align: middle;
}

.l-hd-tel, .l-hd-tel:visited, .l-hd-tel:hover {
  text-decoration: none;
}

.l-hd-accessBtn {
  margin-top: 4px;
  margin-left: 16px;
  padding-left: 1.25em;
  padding-right: 1.25em;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
}

.l-hd .p-siteTtl {
    background-color: var(--color-white);
	    position: relative;
    z-index: 100;
  }

@media print, screen and (min-width:641px) {
  header {
    z-index: 100;
  }
  .l-hd {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .l-hd-tel {
    font-size: 1.66em;
    margin-right: 20px;
  }
}

@media screen and (max-width:640px) {
  html.is-gNavOpen header {
    position: fixed;
    top: 0;
  }
  header {
    position: relative;
    z-index: 100;
  }
  .l-hd {
    height: 60px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .l-hd .p-siteTtl a:before {
    width: 38px;
    height: 40px;
  }
  .l-hd-tel {
    display: none;
  }
  .l-hd-conad address, .l-hd-accessBtn {
    display: none;
  }
}


/*--------------------------------------------------------------------------------
  SP Nav button
--------------------------------------------------------------------------------*/

@media print, screen and (min-width:1261px) {
  .l-gNavBtn {
    display: none;
  }
}

@media print, screen and (max-width:1260px) {
  .l-gNavBtn {
  background-color: var(--color-green02);
    box-sizing: border-box;
    width: 120px;
    height: 120px;
    position: fixed;
    top: 0px;
    right: 0px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 9999;
  }
}

.l-gNavBtn__icon, .l-gNavBtn__icon span, .l-gNavBtn__icon span:before, .l-gNavBtn__icon span:after {
  display: inline-block;
}

.l-gNavBtn__icon {
  position: relative;
  width: 26px;
  height: 24px;
}

.l-gNavBtn__icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
}

.l-gNavBtn__icon span:nth-of-type(1) {
  top: 0;
}

.l-gNavBtn__icon span:nth-of-type(2) {
  top: 10px;
}

.l-gNavBtn__icon span:nth-of-type(3) {
  bottom: 0;
}

@media screen and (max-width:640px) {
  .l-gNavBtn {
    right: 0px;
    width: 60px;
    height: 60px;
  }
  .l-gNavBtn__icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px!important;
    background-color: #fff;
  }
  .l-gNavBtn__icon span:nth-of-type(2) {
    top: 10px;
  }
  .l-gNavBtn__icon {
    position: relative;
    width: 26px;
    height: 24px;
  }
}

.l-gNavBtn.is-aniSet .l-gNavBtn__icon span:nth-of-type(1) {
  -webkit-animation: navBtn01 0.4s forwards;
  animation: navBtn01 0.4s forwards;
}

.l-gNavBtn.is-aniSet .l-gNavBtn__icon span:nth-of-type(2) {
  transition: opacity 0.2s 0.2s;
  opacity: 1;
}

.l-gNavBtn.is-aniSet .l-gNavBtn__icon span:nth-of-type(3) {
  -webkit-animation: navBtn02 0.4s forwards;
  animation: navBtn02 0.4s forwards;
}

.l-gNavBtn.is-close .l-gNavBtn__icon span:nth-of-type(1) {
  -webkit-animation: active-navBtn01 0.4s forwards;
  animation: active-navBtn01 0.4s forwards;
}

.l-gNavBtn.is-close .l-gNavBtn__icon span:nth-of-type(2) {
  opacity: 0;
}

.l-gNavBtn.is-close .l-gNavBtn__icon span:nth-of-type(3) {
  -webkit-animation: active-navBtn03 0.4s forwards;
  animation: active-navBtn03 0.4s forwards;
}

@-webkit-keyframes navBtn01 {
  0% {
    -webkit-transform: translateY(10px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes navBtn01 {
  0% {
    transform: translateY(10px) rotate(45deg);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@-webkit-keyframes navBtn02 {
  0% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes navBtn02 {
  0% {
    transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@-webkit-keyframes active-navBtn01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(10px) rotate(45deg);
  }
}

@keyframes active-navBtn01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(10px) rotate(45deg);
  }
}

@-webkit-keyframes active-navBtn03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
  }
}

@keyframes active-navBtn03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(-10px) rotate(-45deg);
  }
}


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

  2. Navigation
  
----------------------------------------------------------------------------------------------------*/


/*--------------------------------------------------------------------------------
  Global navigation
--------------------------------------------------------------------------------*/

.l-gNav a, .l-gNav a:visited, .l-gNav a:hover {
  text-decoration: none;
}

.l-gNavList {
  list-style: none;
}

.l-gNav__item {}

.l-gNav__item>a>span {
  display: block;
  font-weight: 400;
  color: #ffa69e;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
  /*  transform: rotate(0.05deg);*/
}

@media print, screen and (min-width:1261px) {
  .l-gNav-wrap, .l-gNav {
    display: block !important;
  }
  .l-gNav {}
  .l-gNav__item>a, .l-gNav__item>a:visited {
    color: #50403b;
  }
  .ua-pc .l-gNav__item>a:hover {
    color: var(--color-orange02);
  }
  .l-gNav {
    text-align: center;
    overflow: hidden;
  }
  .l-gNavList {
    padding-right: 20px;
    position: relative;
    width: 100%;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-left: auto;
    margin-right: auto;
  }
  .l-gNav__item {
    vertical-align: middle;
    text-align: center;
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    align-self: center;
  }
  .l-gNav__item>a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-align: left;
	z-index: 1;
  }
  .l-hd .l-gNav__item>a {
    padding: 10px 15px 0px;
  }
  /*.l-gNav__item>a>span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    white-space: nowrap;
  }
  .l-gNavList .l-gNav__item:not(:last-child)>a:before {
    content: "";
    width: 1px;
    height: 100%;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }*/
  .l-hd .l-gNav__item.active>a:after {
    content: "";
    width: 80%;
    height: 10px;
    background-color: var(--color-green04);
    position: absolute;
    left: 50%;
    bottom: 5px;
    transform: translate(-50%);
    z-index: -1;
  }
  .l-gNav-access {
    display: none;
  }
  .l-gNav-conad {
    display: none;
  }
}

.l-gNavList.ft-nav {
  margin-bottom: 60px;
}

.l-gNavList.ft-nav {
  padding: 40px 40px 40px 60px;
}

.l-gNavList.ft-nav li:not(:nth-last-child(-n+3)) {
  border-right: 2px solid var(--color-white);
}

.l-gNavList.ft-nav {
  position: relative;
  height: 100px;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-auto-flow: column;
}

.l-gNavList.ft-nav {
  grid-column-start: 2;
  grid-column-end: 4;
}

.footer-box {
  padding: 40px;
  grid-column-start: 1;
  grid-column-end: 2;
}

@media screen and (max-width:1260px) {
  .l-gNavList.ft-nav {
    display: none;
  }
	.footer-box {
  padding: 40px;
  grid-column-start: 1;
  grid-column-end: 4;
}
}
.l-gNav-wrap {
	background-color: var(--color-white);
}

@media screen and (min-width:641px) and (max-width:1480px) {
		.l-gNavList a, .l-gNavList a:visited, .l-gNavList a:hover {
	font-size: 1.6rem;
  }
}

@media screen and (max-width:1480px) {
	  .l-hd .l-gNav__item>a {
    padding: 10px 10px 0px;
  }
}
@media screen and (max-width:1260px) {
  html.is-gNavOpen {
    overflow-y: hidden;
  }
  html.is-gNavOpen .l-gNav-wrap {
    display: block;
  }
  .l-gNavList a, .l-gNavList a:visited, .l-gNavList a:hover {
    color: var(--color-normal);
    display: block;
  }
	
  .l-gNavList.ft-nav a, .l-gNavList.ft-nav a:visited, .l-gNavList.ft-nav a:hover {
    color: var(--color-normal);
    display: block;
    text-align: left;
  }

  .l-gNav-wrap {
    display: none;
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    /*padding-top: 100px;*/
    /* headerの分 */
  }
  .l-gNavList {
    margin-bottom: 30px;
  }
  .l-gNav {
    padding-top: 3em;
    text-align: center;
    background-color: rgba(255, 255, 255, 1);
    display: none;
    pointer-events: auto;
    padding-left: -webkit-calc(40 / 760 * 100vw);
    padding-right: -webkit-calc(40 / 760 * 100vw);
    padding-left: calc(40 / 760 * 100vw);
    padding-right: calc(40 / 760 * 100vw);
    height: 100%;
    pointer-events: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .l-hd .l-gNav__item {
    border-bottom: 1px solid var(--color-green03);
  }
  .l-hd .l-gNav__item a {
    padding: 0.5em 0 1em;
  }
  .l-hd .l-gNav__item:not(:last-child) {
    margin-bottom: 20px;
  }
  .l-gNav-conad {
    padding-bottom: 2em;
    text-align: center;
  }
  .l-gNav-conad address {
    line-height: 1.7;
    display: block;
    padding-bottom: 0.8em;
  }
  .l-gNav-tel {
    font-size: 1.5em;
  }
  .l-hd-reserve {
    display: none;
  }
}

@media screen and (max-width:1260px) {
  .l-gNav-wrap {
    padding-top: 120px;
	/*  background-color: var(--color-white);*/
    /* headerの分 */
  }
}
@media screen and (max-width:640px) {
  .l-gNav-wrap {
    padding-top: 60px;
    /* headerの分 */
  }
}

.sub-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.sub-menu {
  padding-right: 40px;
}

.sub-menu .dot-list {
  display: flex;
  align-items: center;
  list-style: none;
}

.sub-menu .dot-list a {
  color: var(--color-green02);
}

.sub-menu .dot-list li:not(:last-child) {
  margin-right: 20px;
}

.sub-menu .dot-list li a {
  padding-top: 10px;
  padding-bottom: 10px;
}

.sub-menu>a {
  margin-right: 40px;
}

@media screen and (max-width:1260px) {
.sub-menu {
display: none
}
}


/*--------------------------------------------------------------------------------
  Dropdown
--------------------------------------------------------------------------------*/

/*
.l-gNav-parent {
  overflow: visible;
}

.l-gNav-child-wrap {
  min-width: calc(100%/7);
}

.l-gNav-child {
  width: 100%;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  flex-flow: column;
}

.l-gNav-child li a {
  display: block;
}

@media print, screen and (min-width:641px) {
  .l-gNav-parent.is-active>a {
    color: #E3485E;
  }
  .l-gNav-child-wrap {
    display: none;
    position: absolute;
    top: 100%;
    z-index: 90;
    -webkit-transition: padding 0.3s ease-out;
    transition: padding 0.3s ease-out;
  }
  .l-gNav-child-wrap.is-active {
    display: block;
    padding-top: 1.5em;
  }
  .l-gNav-child a, .l-gNav-child a:visited {
    color: #50403b;
  }
  .ua-pc .l-gNav-child a:hover {
    color: var(--color-orange02);
  }
  .l-gNav-child {
    border: 2px solid #FFEDEF;
    background-color: #fff;
    font-weight: 300;
    padding: 1em;
    box-sizing: border-box;
  }
  .l-gNav-child li {
    width: 100%;
  }
  .l-gNav-child li a {
    padding: 0.5em 0;
    box-sizing: border-box;
  }
}

@media screen and (max-width:640px) {
  .l-gNav-parent>a {
    padding-top: 0.8em;
    padding-bottom: 0.4em;
    border-bottom: 0;
    cursor: inherit;
  }
  .l-gNav-child a, .l-gNav-child a:visited, .l-gNav-child a:hover {
    color: var(--color-orange02);
  }
  .l-gNav-child-wrap {
    display: block;
  }
  .l-gNav-child {
    font-weight: 400;
    padding-left: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid #dee1e2;
  }
  .l-gNav-child li {
    width: 50%;
  }
  .l-gNav-child li a {
    padding-top: 0.4em;
    padding-bottom: 0.4em;
    padding-left: 1.4em;
    display: block;
    position: relative;
  }
  .l-gNav-child li a::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 0.5em solid #eb5f73;
    border-top: 0.25em solid transparent;
    border-bottom: 0.25em solid transparent;
    padding-right: 0.25em;
    vertical-align: 1px;
  }
}
*/


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

  3. Contents
  
----------------------------------------------------------------------------------------------------*/


/*--------------------------------------------------------------------------------
  Container
--------------------------------------------------------------------------------*/

.l-cnt, .l-cnt--pc {
  max-width: 1520px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

@media print, screen and (min-width:641px) {
  .l-cnt, .l-cnt--pc {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (max-width:640px) {
  .l-cnt, .l-cnt--sp {
    padding-left: -webkit-calc(40 / 760 * 100vw);
    padding-right: -webkit-calc(40 / 760 * 100vw);
    padding-left: calc(40 / 760 * 100vw);
    padding-right: calc(40 / 760 * 100vw);
  }
}

.m-cnt, .m-cnt--pc {
  max-width: 1280px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

@media print, screen and (min-width:641px) {
  .m-cnt, .m-cnt--pc {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (max-width:640px) {
  .m-cnt, .m-cnt--sp {
    padding-left: -webkit-calc(40 / 760 * 100vw);
    padding-right: -webkit-calc(40 / 760 * 100vw);
    padding-left: calc(40 / 760 * 100vw);
    padding-right: calc(40 / 760 * 100vw);
  }
}


/*--------------------------------------------------------------------------------
  Page title
--------------------------------------------------------------------------------*/

.l-pgTtl {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 35% ;
  background-image: url("../image/mt.iwaki_back.jpg");
  box-sizing: border-box;
}

.l-pgTtl h1 {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  overflow: hidden;
  line-height: 1.4;
  text-align: center;
  color: var(--color-green02);
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
  font-weight:700; 
}


@media print, screen and (min-width:641px) {
  .l-pgTtl {
    text-align: left;
    height: 220px;
  }
}

@media print, screen and (min-width:641px) and (max-width:1260px) {
  .l-pgTtl h1 {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (max-width:640px) {
  .l-pgTtl {
    height: 180px;
  }
  .l-pgTtl h1 span.jp-ttl {
    font-size: 14px;
  }
}


/*--------------------------------------------------------------------------------
  パンくず
--------------------------------------------------------------------------------*/

.l-pan {
  margin-top: 0.5em;
  margin-bottom: 56px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  /*font-weight: 500;*/
}

.l-pan ul {
  text-align: left;
  font-size: 0.85em;
}

.l-pan li {
  display: inline-block;
  position: relative;
  padding-left: 1.25em;
}

.l-pan li:before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0.25em;
  background-color: rgba(33, 53, 62, 0.6);
}

.l-pan li:first-child {
  padding-left: 0;
}

.l-pan li:first-child:before {
  display: none;
}

@media screen and (max-width:640px) {
  .l-pan {
    margin-bottom: 1.5em;
  }
  .ua-tab .l-pan, .ua-sp .l-pan {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }
  .ua-tab .l-pan ul, .ua-sp .l-pan ul {
    white-space: nowrap;
  }
  .ua-tab .l-pan::-webkit-scrollbar, .ua-sp .l-pan::-webkit-scrollbar {
    height: 2px;
  }
  .ua-tab .l-pan::-webkit-scrollbar-track, .ua-sp .l-pan::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 1px;
  }
  .ua-tab .l-pan::-webkit-scrollbar-thumb, .ua-sp .l-pan::-webkit-scrollbar-thumb {
    border-radius: 1px;
    background: #ccc;
  }
}


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

  3. Footer
  
----------------------------------------------------------------------------------------------------*/


/*--------------------------------------------------------------------------------
  Back to top
--------------------------------------------------------------------------------*/

.l-backtoTop {
  display: none;
  width: 56px;
  height: 56px;
  background-color: var(--color-green01);
  border: 1px solid var(--color-white);
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  cursor: pointer;
  -webkit-transition: background 0.15s ease-out;
  transition: background 0.15s ease-out;
}

.ua-pc .l-backtoTop:hover {
  background-color: var(--color-green02);
}

.l-backtoTop__icon {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-backtoTop__icon:after {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  margin-top: 0.2em;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (max-width:640px) {
  .l-backtoTop {
    /*width: 2.6em;
    height: 2.6em;*/
    /*border: 0px;
    border-left: 1px solid var(--color-green04);*/
    width: 60px;
    height: 60px;
    /* right: 1em;
    bottom: 1em;*/
    right: 0;
    bottom: 0;
  }
  .l-backtoTop__icon:after {
    width: 0.7em;
    height: 0.7em;
  }
}


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

.l-ft {
  position: relative;
  height: 100%;
}

.ft-txt {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  white-space: nowrap;
}

.ft-hdline {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

footer, footer a, footer a span {
  /*color: #fff!important;*/
}

footer a span {
  text-shadow: none!important;
}

footer {
  background-color: var(--color-green04);
}

.l-ft a {
  text-decoration: none;
}

.l-ft {
  text-align: center;
  display: grid;
}

.l-ft {
  grid-template-columns: repeat(3, 1fr);
}

.footer-box {
  background-color: var(--color-white);
}



.l-ft-copy {
  margin-left: auto;
  margin-right: auto;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  background-color: var(--color-green01);
  color: var(--color-white);
}

@media print, screen and (min-width:641px) {
  footer {
    padding-top: 40px;
  }
  .l-ftNavList {
    display: flex;
    justify-content: space-between;
    max-width: 790px;
  }
  .l-ftNav__item>a {
    font-size: 0.88em;
  }
  .l-ftNav__item>div:not(:first-of-type) {
    margin-top: 24px;
  }
  .l-ftNav-child {
    margin-top: 20px;
  }
  .l-ftNav-child a {
    font-size: 0.77em;
  }
  .l-ft-copy {
    text-align: center;
    font-size: 0.77em;
  }
}

@media print, screen and (max-width:640px) {
  footer {

    text-align: center;
  }
	
	.not-top footer {
padding-top: 40px;
  }
  .l-ft .p-siteTtl {
    padding-bottom: 0.2em;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
	  width: 180px;
	  height: 90px;
  }
  .l-ft-copy {
    font-size: 0.88em;

  }
  .ft-txt {
    transform: translateY(-50%) translateX(-50%) scale(0.8, 0.8);
  }
}

.col2_fl {
  display: flex;
}

.col2_fl .img-box {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.col2_fl .txt-box {
  width: 100%;
}

.col2_fl .img-box {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media print, screen and (min-width:961px) {
  .col2_fl .txt-box {
    max-width: 600px;
  }
  .col2_fl .img-box {
    max-width: 540px;
    padding-top: 33.75%;
  }
  .col2_fl>div:nth-child(1) {
    margin-right: 60px;
  }
}

@media print, screen and (max-width:960px) {
  .col2_fl {
    flex-wrap: wrap;
  }
  .col2_fl>div:nth-child(1) {
    margin-bottom: 20px;
  }
  .col2_fl .img-box {
    max-width: 800px;
    padding-top: 75%;
  }
}

@media print, screen and (max-width:640px) {
  .col2_fl {}
}

.col2_gr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media print, screen and (max-width:800px) {
  .col2_gr {
    grid-template-columns: repeat(1, 1fr);
  }
}

.col3_gr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media print, screen and (max-width:960px) {
  .col3_gr {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media print, screen and (max-width:640px) {
  .col3_gr {
    grid-template-columns: repeat(1, 1fr);
  }
}


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

.intro {
  margin-bottom: 90px;
}

@media print, screen and (max-width:640px) {
  .intro {
    margin-bottom: 60px;
  }
}