@charset "utf-8";

/*---------------------------
|          リセット系         |
---------------------------*/
body,
div,
p,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
header,
footer,
a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #1a1a1a;
}

a:hover {
  opacity: .7;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

/*--------------------------
|          共通指定          |
---------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', 'Roboto', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #1a1a1a;
}

/*--------------------------
|         汎用クラス         |
---------------------------*/
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

@media print,
(min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-block {
    display: block !important;
  }
}

/*--------------------
| レイアウト
--------------------*/
.common-section {
  padding: 80px 0 100px 0;
}

.contents-wrapper {
  padding: 0 15px;
}

.contents-inner {
  margin: 0 auto;
}

.inner-wide {
  max-width: 1200px;
}

.inner-narrow {
  max-width: 1080px;
}

/*
.contents-wrapper .contents-inner:last-child {
  margin-bottom: 0;
}*/

/*
.has-border {
  position: relative;
}

.has-border::before {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/bg_sdgs-line_sp.svg) no-repeat top center/cover;
}

@media print,
(min-width: 768px) {
  .has-border::before {
    height: 16px;
    background: url(../images/bg_sdgs-line_pc.svg) no-repeat top center/cover;
  }
}

.common-section h2 {
  margin: 0 0 60px 0;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-size: 3.2rem;
  text-align: center;
  line-height: 1.4;
  color: #0099D9;
}

.common-section h2 span {
  display: block;
  font-size: 1.8rem;
  color: #333;
}

.common-section h3 {
  margin: 0 0 30px 0;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  line-height: 1.4;
}
*/

.common-section h2{
  margin: 0 0 40px 0;
  text-align: center;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease-out .2s;
}

.fade-in-up.viewon {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: all 1s ease-out .5s;
}

.fade-in.viewon {
  opacity: 1;
}
/*
@media print,
(min-width: 768px) {
  .common-section h2 {
    font-size: 4.8rem;
  }

  .common-section h2 span {
    font-size: 2rem;
  }

  .common-section h3 {
    font-size: 2.8rem;
  }
}*/

/*--------------------
| kv
--------------------*/
.kv-box {
  background: #d4ecee;
}

.kv-title {
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: title-fade-in 1.2s ease-in .5s forwards;
}

@keyframes title-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .kv-box {
    padding: 30px 0;
  }
}


/*--------------------
| intro
--------------------*/
.section-intro {
  position: relative;
  padding-bottom: 120px;
  background: linear-gradient(60deg, #00A0E9 0%, #14126F 100%);
}

.section-intro::after{
  content: "";
  display: block;
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/bg_shop.png) no-repeat center bottom/cover;
}

/*
.section-intro h2 {
  margin: 0 0 40px 0;
  font-size: 2rem;
}*/
.message {
  margin: 0 0 40px 0;
  color: #fff;
}

.kankeizu{
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 767px) {
}

@media print,
(min-width: 768px) {
  /*.section-intro h2 {
    font-size: 2.4rem;
  }*/

  .section-intro {
    padding-bottom: 240px;
  }

  .section-intro::after{
    height: 140px;
  }

  .message {
    margin: 0 0 60px 0;
    text-align: center;
    font-size: 1.8rem;
  }
}

/*--------------------
| benefit
--------------------*/
.section-benefit{
  background: #fcc800;
}

.benefit-box{
  position: relative;
}

.benefit-caution{
  margin: 10px 0;
  text-align: right;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .section-benefit{
    padding-top: 60px;
  }

  .benefit-box>div:nth-of-type(2){
    margin-top: 30px;
  }

  .hands{
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .benefit-box{
    display: flex;
    justify-content: space-between;
  }

  .benefit-box>div{
    width: 48%;
  }

  .benefit-box>div.hands{
    position: absolute;
    width: 160px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.button-box{
  margin: 60px 0 40px 0;
}

.button-box>div{
  max-width: 540px;
  margin: 0 auto;
}

.button-box>div a{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  background: #14126f;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  border-radius: 100vh;
}

.button-box>div a::before{
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 20px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.flow{
  font-weight: bold;
  font-size: 1.8rem;
}

.flow span{
  color: #d7000f;
}

@media screen and (min-width: 768px) {
  .button-box{
    margin: 80px 0 60px 0;
  }

  .button-box>div a{
    font-size: 2.4rem;
  }

  .button-box>div a::before{
    right: 30px;
  }

  .flow{
    text-align: center;
    font-size: 2.2rem;
  }
}

/*--------------------
| links
--------------------*/
.section-links {
  background: #d4ecee;
}

.section-links h2{
  color: #231815;
}

.links-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.links-list::before,
.links-list::after {
  content: "";
  display: block;
  width: 49%;
}

.links-list::before {
  order: 1;
}

.links-list li {
  width: 49%;
  margin: 0 0 10px 0;
}

.links-list li a {
  display: block;
}

.links-list.links-list-logo li a {
  padding: 4px;
  background: #fff;
}

.links-list.links-list-text a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  height: 100%;
  background: #fff;
  text-align: center;
  text-decoration: underline;
  color: #333;
  line-height: 1.2;
}

.links-list.links-list-text a.no-link{
  text-decoration: none;
}

.links-list.links-list-text a.no-link:hover{
  opacity: 1;
}

.update{
  margin: 10px 0;
  text-align: right;
}

/*
@media screen and (max-width: 767px) {
  .section-links {
    padding-top: 60px;
  }
}
*/

@media print,
(min-width: 768px) {
  .links-list li {
    width: 23.5%;
    margin: 0 0 20px 0;
  }

  .links-list::before,
  .links-list::after {
    width: 23.5%;
  }

  .links-list.links-list-text a {
    padding: 16px;
  }
}

/*--------------------
| contact
--------------------*/
.section-contact .inner-narrow>p{
  margin: 20px 0;
  font-weight: bold;
  font-size: 1.8rem;
}

.address p{
  margin: 10px 0;
}

.address p span{
  display: inline-block;
  padding: 0 8px;
  margin: 0 8px 0 0;
  color: #fff;
  font-size: 1.4rem;
  background: #d7000f;
  border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .section-contact .inner-narrow>p{
    font-size: 2rem;
    text-align: center;
  }

  .address{
    display: flex;
    justify-content: center;
  }

  .address p{
    margin: 10px;
  }
}

/*--------------------
| footer
--------------------*/
footer {
  padding: 30px 0;
  background: #231815;
  text-align: center;
}

footer p a {
  display: block;
  color: #fff;
  font-size: 1.6rem;
}


/*--------------------
| 汎用
--------------------*/
.d-none {
  display: none;
}

@media print,
(min-width: 768px) {
  .d-md-block {
    display: block;
  }
}

/*--------------------
| TOPに戻るボタン
--------------------*/
.top-button {
  position: fixed;
  z-index: 10;
  bottom: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: #14126f;
  border-radius: 50%;
  opacity: .7;
}

.top-button a {
  display: block;
  width: 100%;
  height: 100%;
}

.top-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -30%) rotate(-45deg);
}

/*--------------------
| 地域連携パートナー 2024.03.08
--------------------*/
.renkei-partner{
  margin: 40px auto;
  padding: 15px;
  max-width: 640px;
  background: rgba(255, 255, 255, 1);
  border-radius: 10px;
}

.renkei-partner h3{
  margin: 0 0 16px 0;
  padding: 2px 8px;
  text-align: center;
  color: #14126f;
  border: 1px solid #14126f;
}

.renkei-partner a{
  display: block;
  margin: 20px auto;
  width: 80%;
  max-width: 280px;
}

.renkei-partner p{
  padding: 10px 0 0 0;
  line-height: 1.4;
  border-top: 1px solid #ccc;
}

@media print,(min-width: 768px) {
  .renkei-partner{
    padding: 20px 30px;
  }

  .renkei-partner p{
    text-align: center;
  }
}



