/*
* fontawesomeセット
* content:'\○○○';
* font: var(--fa-font-solid);
*/
:root {
  --pink: #e95682;
}

.w126 {
  padding: 0 20px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.w96 {
  padding: 0 20px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

body {
  font-family: "MPLUSRounded1c";
  overflow-y: visible;
  overflow-x: hidden;
  background: #fdfbf7;
}

.poppins {
  font-family: "Poppins";
}

main {
  transform: rotate(.03deg);
}

a,
a:visited {
  transition: ease all .4s;
}

a:hover,
a:visited:hover {
  opacity: .7;
}

@media screen and (min-width:769px) {
  .sp_only {
    display: none;
  }
}

@media screen and (max-width:768px) {
  .pc_only {
    display: none;
  }

  .w126 {
    padding: 0 10px;
  }

  .w96 {
    padding: 0 10px;
  }
}

/*=====================================
*
*header
*
=======================================*/
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}

.header_inner {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

header .logo {
  width: 230px;
}

header .header_inner .Gmenu {
  transform: rotate(.03deg);
}

header .header_inner .Gmenu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

header .header_inner .Gmenu li a {
  color: #333;
  font-weight: 500;
}

@media screen and (max-width:968px) {
  header .logo {
    width: 160px;
  }

  .header_inner {
    padding: 10px;
  }
}

@media screen and (max-width:768px) {
  header .logo {
    width: 120px;
  }

  header .hum {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    gap: 8px;
    position: relative;
    z-index: 999;
  }

  header .hum span {
    width: 100%;
    height: 3px;
    background: var(--pink);
    border-radius: 500px;
    transition: ease all .4s;
    position: relative;
  }

  header .hum.active span {
    background: #fff;
  }

  header .hum.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(45deg);
  }

  header .hum.active span:nth-of-type(2) {
    opacity: 0;
  }

  header .hum.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(-45deg);
    top: -2px;
  }

  header .global {
    position: fixed;
    right: 0;
    top: 0;
    background: var(--pink);
    height: 100%;
    width: 80%;
    max-width: 320px;
    z-index: 99;
    padding-top: 60px;
    transform: translateX(100%);
    transition: all .3s ease;
  }

  header .global.opened {
    transform: translateX(0);
  }

  header .header_inner .Gmenu {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0 20px;
  }

  header .header_inner .Gmenu li {
    width: 100%;
    display: block;
  }

  header .header_inner .Gmenu li a {
    width: 100%;
    display: block;
    padding: 20px;
    color: #fff;
    border-bottom: 1px solid #fff;
  }
}

/*=====================================
*
*fixed
*
=======================================*/
.fixed {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
}

.fixed.active {
  opacity: 1;
  pointer-events: auto;
}

.fixed .fixed_inner {
  width: 100%;
  max-width: 180px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid var(--pink);
  overflow: hidden;
  color: #fff;
}

.fixed .fixed_inner .title {
  font-size: 20px;
  background: var(--pink);
  transform: rotate(.03deg);
}

.fixed .fixed_inner .image {
  overflow: hidden;
  height: 125px;
  position: relative;
}

.fixed .btn {
  margin: 0 auto;
  transform: translateY(-50%);
}

.fixed .btn a {
  font-size: 24px;
  transform: rotate(.03deg);
  line-height: 1;
  font-weight: 500;
  text-align: center;
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid var(--pink);
  background: linear-gradient(to top, #f5668d, #f2a2b8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  margin: 0 auto;
}

.fixed .btn a span {
  font-size: 16px;
}

@media screen and (max-width:768px) {
  .fixed {
    right: 10px;
    bottom: -20px;
  }

  .fixed .fixed_inner {
    width: 120px;
  }

  .fixed .fixed_inner .title {
    font-size: 14px;
    line-height: 1.3;
    padding: 5px;
  }

  .fixed .fixed_inner .image {
    height: 80px;
    position: relative;
  }

  .fixed .fixed_inner .image img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .fixed .btn a {
    font-size: 18px;
    width: 50px;
    height: 50px;
  }

  .fixed .btn a span {
    font-size: 12px;
  }
}

/*=====================================
*
*front
*
=======================================*/
.front_title {
  text-align: center;
  position: relative;
  font-weight: 500;
}

.front_title .sub {
  font-size: 20px;
}

.front_title h2 {
  font-size: 36px;
  color: var(--pink);
  margin: 10px 0 40px;
}

.front_btn {
  margin-top: 60px;
}

.front_btn a {
  background: #fff;
  border-radius: 500px;
  border: 2px solid var(--pink);
  color: var(--pink);
  position: relative;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  max-width: 420px;
  line-height: 1;
  padding: 20px;
  display: block;
  margin: 0 auto;
}

.front_btn a::before {
  content: '';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 16px;
  background: url(../images/btn-arrow.png)no-repeat center center;
  background-size: cover;
}

.front_btn a span {
  margin-bottom: 10px;
  color: #333;
  font-size: 20px;
  display: block;
}

@media screen and (max-width:1260px) {
  .front_title h2 {
    font-size: 30px;
  }
}

@media screen and (max-width:968px) {
  .front_title .sub {
    font-size: 18px;
  }

  .front_title h2 {
    font-size: 24px;
    margin: 10px 0 20px;
  }

  .front_btn {
    margin-top: 40px;
  }

  .front_btn a {
    max-width: 360px;
  }

  .front_btn a span {
    font-size: 16px;
  }
}

@media screen and (max-width:768px) {
  .front_title h2 {
    font-size: 22px;
  }

  .front_btn a {
    padding: 15px;
  }

  .front_btn a::before {
    right: 20px;
  }
}

/*=====================================
*mv
=======================================*/
.mv {
  padding: 100px 40px;
  background: url(../images/mv-bg.png)no-repeat center bottom;
  background-size: cover;
  position: relative;
}

.mv .mv_inner {
  max-width: 1600px;
  width: 100%;
  background: url(../images/mv.jpg)no-repeat center center;
  background-size: cover;
  padding: 60px 40px;
  border-radius: 10px;
  box-shadow: 0 5px 10px 0 #0000001f;
  margin: 0 auto;
  position: relative;
}

.mv .line {
  position: absolute;
  right: 0;
  bottom: 0;
}

.mv .mv_inner .mv_text {
  width: 100%;
  max-width: 1260px;
  padding: 0 20px;
  margin: 0 auto;
}

.mv .mv_inner .mv_text .top {
  background: linear-gradient(to right, #fff, #fff, #fff, transparent);
  display: inline-block;
  padding: 15px 20px;
  padding-right: 40px;
  line-height: 1;
  border-radius: 10px 0 0 10px;
}

.mv .mv_inner .mv_text .top span {
  position: relative;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  font-size: 20px;
}

.mv .mv_inner .mv_text .top span::before {
  content: '';
  width: 4px;
  height: 30px;
  background: var(--pink);
  border-radius: 10px;
  font-size: 20px;
}

.mv .mv_inner .mv_text h1 {
  margin: 40px 0;
  font-size: 54px;
  color: var(--pink);
}

.mv .mv_inner .mv_text h1 span {
  font-size: 70px;
  font-weight: 500;
}

.mv .mv_inner .mv_text ol {}

.mv .mv_inner .mv_text ol li {
  position: relative;
  margin: 30px auto;
  font-size: 20px;
  padding-left: 30px;
}

.mv .mv_inner .mv_text ol li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: #111;
  line-height: 1;
}

.mv .mv_inner .mv_text .btn {
  margin-top: 60px;
}

.mv .mv_inner .mv_text .btn a {
  background: #fff;
  border-radius: 500px;
  border: 2px solid var(--pink);
  color: var(--pink);
  position: relative;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  max-width: 420px;
  line-height: 1;
  padding: 20px;
  display: block;
  z-index: 9;
}

.mv .mv_inner .mv_text .btn a::before {
  content: '';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 16px;
  background: url(../images/btn-arrow.png)no-repeat center center;
  background-size: cover;
}

@media screen and (max-width:1260px) {
  .mv {
    padding-bottom: 40px;
  }

  .mv .line {
    width: 300px;
  }

  .mv .mv_inner {
    padding: 20px;
  }

  .mv .mv_inner .mv_text .top span {
    font-size: 18px;
  }

  .mv .mv_inner .mv_text h1 {
    font-size: 34px;
  }

  .mv .mv_inner .mv_text h1 span {
    font-size: 50px;
  }

  .mv .mv_inner .mv_text ol li {
    font-size: 20px;
  }
}

@media screen and (max-width:968px) {
  .mv {
    padding: 80px 10px 10px;
  }

  .mv .mv_inner .mv_text {
    padding: 0;
  }

  .mv .mv_inner .mv_text h1 {
    font-size: 28px;
  }

  .mv .mv_inner .mv_text h1 span {
    font-size: 42px;
  }

  .mv .mv_inner .mv_text ol li {
    font-size: 16px;
    margin: 20px auto;
  }

  .mv .mv_inner .mv_text .btn {
    margin-top: 40px;
  }

  .mv .mv_inner .mv_text .btn a {
    max-width: 360px;
  }
}

@media screen and (max-width:768px) {
  .mv {
    padding: 60px 10px 10px;
  }

  .mv .mv_inner .mv_text .top {
    padding: 10px;
    padding-right: 20px;
  }

  .mv .mv_inner .mv_text .top span {
    gap: 10px;
  }

  .mv .mv_inner .mv_text {
    width: 70%;
    margin: 0;
  }

  .mv .mv_inner .mv_text .top span {
    font-size: 16px;
  }

  .mv .mv_inner .mv_text h1 {
    font-size: 22px;
  }

  .mv .mv_inner .mv_text h1 span {
    font-size: 28px;
  }

  .mv .mv_inner .mv_text ol li {
    font-size: 14px;
  }

  .mv .line {
    width: 200px;
  }
}

@media screen and (max-width:568px) {
  .mv .mv_inner {
    background: url(../images/mv.jpg) no-repeat 70% center;
    background-size: cover;
    padding: 10px;
  }

  .mv .mv_inner .mv_text {
    width: 100%;
  }

  .mv .mv_inner .mv_text .top span {
    font-size: 14px;
    line-height: 1.4;
  }

  .mv .mv_inner .mv_text h1 {
    text-shadow: 0 0 20px #fff, 0 0 10px #fff;
    margin: 20px auto;
  }

  .mv .mv_inner .mv_text ol {
    padding: 0 10px;
    border-radius: 10px;
    background: #ffffffa8;
    overflow: hidden;
  }

  .mv .mv_inner .mv_text ol li {
    margin: 10px auto;
    padding-left: 20px;
    font-size: 12px;
    font-weight: 500;
  }

  .mv .mv_inner .mv_text ol li::before {
    width: 10px;
  }

  .mv .mv_inner .mv_text .btn {
    margin-top: 40px;
    max-width: 360px;
  }
}

/*=====================================
*section1
=======================================*/
.sec01 {
  padding: 80px 0;
}

.sec01 .sec01_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row-reverse;
  gap: 40px;
}

.sec01 .sec01_inner .image {
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  border-radius: 10px;
}

.sec01 .sec01_inner .text {
  width: 100%;
}

.sec01 .sec01_inner .text .front_title {
  text-align: left;
}

.sec01 .sec01_inner .text ol {
  padding: 20px;
  background: #fffafb;
  border: 1px solid #eea1b8;
  border-radius: 10px;
  margin: 20px auto;
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.sec01 .sec01_inner .text p {
  line-height: 1.8;
}

@media screen and (max-width:768px) {
  .sec01 {
    padding: 40px 0;
  }

  .sec01 .sec01_inner {
    flex-flow: column;
  }
}

/*=====================================
*section2
=======================================*/
.sec02 {
  padding: 80px 0;
  background: url(../images/sec02-bg.jpg)no-repeat center center;
  background-size: cover;
}

.sec02 .sec02_list {
  margin: 0 auto;
}

.sec02 .sec02_list ol li {
  width: 20%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 10px 0 #0000001f;
  margin: 20px;
}

.sec02 .sec02_list ol li a {
  color: #333;
  padding: 20px;
  display: block;
}

.sec02 .sec02_list ol li .image {
  overflow: hidden;
  border-radius: 5px;
}

.sec02 .sec02_list ol li .inner {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.sec02 .sec02_list ol li .inner .title {
  width: 70px;
  display: flex;
  justify-content: space-between;
  margin-right: 5px;
}

.sec02 .sec02_list ol li .inner .title::after {
  content: ':';
}

@media screen and (max-width:968px) {
  .sec02 .sec02_list ol li {
    width: 32%;
  }

  .sec02 .sec02_list ol li a {
    padding: 10px;
  }
}

@media screen and (max-width:768px) {
  .sec02 {
    padding: 40px 0;
  }

  .sec02 .sec02_list ol li {
    width: 45%;
    margin: 10px;
  }
}

@media screen and (max-width:568px) {
  .sec02 .sec02_list ol li {
    width: 60%;
    margin: 10px;
  }

  .sec02 .sec02_list ol li .inner {
    font-size: 14px;
  }
}

/*=====================================
*section3
=======================================*/
.sec03 {
  padding: 80px 0;
}

.sec03 .sec03_list {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 10px 0 #0000001f;
  width: 100%;
}

.sec03 .sec03_list ol {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.sec03 .sec03_list ol li {
  width: 32%;
}

.sec03 .sec03_list ol li .image {
  overflow: hidden;
  border-radius: 10px;
}

.sec03 .sec03_list ol li .name {
  font-size: 24px;
  margin: 10px 0;
  font-weight: 700;
  color: #111;
}

.sec03 .sec03_list ol li .position {
  font-size: 18px;
  color: #111;
  margin: 10px auto;
}

.sec03 .sec03_list ol li p {
  font-size: 16px;
}

@media screen and (max-width:968px) {
  .sec03 .sec03_list {
    padding: 10px;
  }

  .sec03 .sec03_list ol {
    gap: 20px;
  }

  .sec03 .sec03_list ol li .name {
    font-size: 20px;
  }

  .sec03 .sec03_list ol li .position {
    font-size: 16px;
  }

  .sec03 .sec03_list ol li p {
    font-size: 14px;
  }
}

@media screen and (max-width:768px) {
  .sec03 {
    padding: 40px 0;
  }

  .sec03 .sec03_list ol {
    gap: 20px;
    flex-flow: column;
  }

  .sec03 .sec03_list ol li {
    width: 100%;
  }

  .sec03 .sec03_list ol li .image {
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}

/*=====================================
*section4
=======================================*/
.sec04 {
  padding: 80px 0;
}

.sec04 .center_text {
  margin: 40px auto;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
}

.sec04 .sec04_list {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 10px 0 #0000001f;
  width: 100%;
}

.sec04 .sec04_list ol {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.sec04 .sec04_list ol li {
  width: 32%;
}

.sec04 .sec04_list ol li .image {
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #faabc2;
  position: relative;
}

.sec04 .sec04_list ol li .image span {
  background: #faabc2;
  padding: 10px;
  max-width: 200px;
  width: 100%;
  color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -1px;
  font-size: 20px;
  text-align: center;
  line-height: 1;
  border-radius: 0 0 10px 10px;
}

.sec04 .sec04_list ol li p {
  margin-top: 10px;
  font-size: 16px;
}

@media screen and (max-width:968px) {
  .sec04 .center_text {
    font-size: 16px;
  }

  .sec04 .sec04_list {
    padding: 10px;
  }

  .sec04 .sec04_list ol {
    gap: 20px;
  }

  .sec04 .sec04_list ol li .image span {
    max-width: 80%;
    font-size: 16px;
  }

  .sec04 .sec04_list ol li p {
    font-size: 14px;
  }
}

@media screen and (max-width:768px) {
  .sec04 {
    padding: 40px 0;
  }

  .sec04 .sec04_list ol {
    gap: 20px;
    flex-flow: column;
  }

  .sec04 .sec04_list ol li {
    width: 100%;
  }

  .sec04 .sec04_list ol li .image {
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}

/*=====================================
*section5
=======================================*/
.sec05 {
  padding: 80px 0;
  position: relative;
  background: url(../images/sec05-bg.jpg)no-repeat center center;
  background-size: cover;
}

.sec05 .sec05_list {
  width: 100%;
}

.sec05 .sec05_list ol {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.sec05 .sec05_list ol li {
  width: 32%;
  position: relative;
  background: url(../images/sec05-list-bg.jpg) no-repeat center center;
  background-size: auto;
  border-radius: 10px;
  box-shadow: 0 5px 10px 0 #0000001f;
}

.sec05 .sec05_list ol li .image {
  overflow: hidden;
  border-radius: 10px;
  opacity: .3;
}

.sec05 .sec05_list ol li .inner {
  color: #fff;
  position: absolute;
  width: 100%;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.sec05 .sec05_list ol li .inner .sub {
  font-size: 20px;
  line-height: 1.2;
}

.sec05 .sec05_list ol li .inner .title {
  font-size: 36px;
  font-weight: 500;
}

.sec05 .sec05_list ol li .bottom {
  color: #fff;
  font-size: 20px;
  text-align: center;
  position: absolute;
  width: 100%;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}

.sec05 .sec05_list ol li .bottom span {
  font-weight: 500;
  margin-right: 20px;
}

.sec05 .right_bottom {
  text-align: right;
  margin-top: 40px;
}

.sec05 .right_bottom a {
  color: #111;
  border-bottom: 1px solid #111;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
}

.sec05 .right_bottom a::after {
  content: '';
  width: 11px;
  height: 13px;
  background: url(../images/sec05-arrow.png)no-repeat center center;
  background-size: cover;
  display: block;
  margin-left: 10px;
}

@media screen and (max-width:1260px) {
  .sec05 .sec05_list ol li .inner .title {
    font-size: 30px;
  }

  .sec05 .sec05_list ol {
    gap: 20px;
  }

  .sec05 .sec05_list ol li .inner .title {
    font-size: 30px;
  }

  .sec05 .sec05_list ol li .bottom {
    font-size: 17px;
  }
}

@media screen and (max-width:968px) {
  .sec05 .sec05_list ol li .inner .title {
    font-size: 20px;
  }

  .sec05 .sec05_list ol li:first-child .inner {
    top: 40%;
  }

  .sec05 .sec05_list ol li .bottom {
    bottom: 10px;
    font-size: 14px;
    line-height: 1.3;
  }

  .sec05 .sec05_list ol li .bottom span {
    display: block;
    margin: 0;
  }
}

@media screen and (max-width:768px) {
  .sec05 {
    padding: 40px 0;
  }

  .sec05 .sec05_list ol {
    gap: 20px;
    flex-flow: column;
  }

  .sec05 .sec05_list ol li {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .sec05 .sec05_list ol li:first-child .inner {
    top: 50%;
  }

  .sec05 .sec05_list ol li .bottom {
    font-size: 18px;
  }

  .sec05 .sec05_list ol li .bottom span {
    display: inline-block;
    margin: 0;
    margin-right: 20px;
  }
}

/*=====================================
*section6
=======================================*/
.sec06 {
  padding: 80px 0;
}

.sec06 .sec06_list {
  margin: 40px auto;
}

.sec06 .sec06_list ol {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 2%;
}

.sec06 .sec06_list ol li {
  width: 32%;
  margin-bottom: 20px;
}

.sec06 .sec06_list ol li a {
  color: #333;
}

.sec06 .sec06_list ol li a .image {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 10px;
  position: relative;
  border: 2px solid #faabc2;
}

.sec06 .sec06_list ol li a .image span {
  background: #faabc2;
  color: #fff;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  border-radius: 0 0 10px 0;
  font-size: 20px;
  line-height: 1;
}

@media screen and (max-width:968px) {
  .sec06 .sec06_list ol li a .image span {
    max-width: 80%;
    font-size: 16px;
  }
}

@media screen and (max-width:768px) {
  .sec06 {
    padding: 40px 0;
  }

  .sec06 .sec06_list ol li {
    width: 49%;
  }

}

/*=====================================
*section7
=======================================*/

/*=====================================
*section8
=======================================*/

/*=====================================
*section9
=======================================*/

/*=====================================
*section10
=======================================*/


/*=====================================
*
*single
*
=======================================*/
.single_header {
  background: url(../images/header-bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}

.single_header_inner {
  padding: 100px 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.single_header_inner .image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 10px 0 #0000001f;
}

.single_header_inner .title h1 {
  font-size: 40px;
  font-weight: 500;
  color: var(--pink);
}

.single_header_inner .title .sub {
  font-size: 30px;
}

.single_header .line {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 300px;
}

.single_col>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 80px auto;
  gap: 20px;
}

.single_col>div figure {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 10px 0 #0000001f;
}

.single_col>div .text {}

.single_col>div .text .title p {
  font-size: 18px;
  font-weight: 500;
  color: var(--pink);
  line-height: 1;
}

.single_col>div .text h2 {
  font-size: 30px;
  font-weight: 500;
  color: #111;
  margin: 10px auto 20px;
  text-align: left;
}

.single_col>div .text p {
  line-height: 1.8;
}

.project_btn {
  margin: 60px auto;
}

.project_btn a {
  background: #fff;
  border-radius: 500px;
  border: 2px solid var(--pink);
  color: var(--pink);
  position: relative;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  max-width: 420px;
  line-height: 1;
  padding: 20px;
  display: block;
  margin: 0 auto;
}

.project_btn a::before {
  content: '';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 16px;
  background: url(../images/btn-arrow.png)no-repeat center center;
  background-size: cover;
}

.project_btn a span {
  margin-bottom: 10px;
  color: #333;
  font-size: 20px;
  display: block;
}

.project_custom {}

.project_custom h2 {
  text-align: center;
  font-size: 36px;
  color: var(--pink);
  margin: 40px auto;
}

#single .project_custom ol {
  background: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

#single .project_custom ol li {
  color: #fff;
  background: var(--pink);
  max-width: 200px;
  width: 100%;
  text-align: center;
  padding: 10px;
  margin: 0;
  border-radius: 10px;
  font-size: 20px;
}

#single .project_custom ol li::before {
  content: none;
}

#single .project_custom .table_wrap {
  margin: 80px auto;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  max-width: 960px;
  width: 100%;
  box-shadow: 0 5px 10px 0 #0000001f;
  padding: 40px;
  padding-top: 0;
}

#single .project_custom .table_wrap table {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border: none;
}

#single .project_custom .table_wrap table tr:nth-of-type(even) {
  background: #f3f3f3;
}

#single .project_custom .table_wrap table th {
  border: none;
  background: none;
  text-align: left;
  padding: 20px 40px;
  vertical-align: middle;
  font-size: 20px;
  width: 180px;
}

#single .project_custom .table_wrap table td {
  border: none;
  background: none;
  padding: 20px 40px;
  vertical-align: middle;
}

.single_contents {
  padding: 80px 0;
}

.single_contents h2 {
  margin: 20px auto;
  font-weight: 500;
  font-size: 36px;
  color: var(--pink);
}

.single_contents h3 {
  margin: 20px auto;
  font-weight: 500;
  font-size: 30px;
  border-bottom: 2px solid var(--pink);
  padding: 10px 0;
}

.single_contents p {
  line-height: 1.8;
  font-size: 16px;
  margin: 20px auto;
}

@media screen and (max-width:968px) {
  .project_custom h2 {
    font-size: 28px;
  }

  .single_header_inner .title {
    width: 58%;
  }

  .single_header_inner .image {
    width: 40%;
  }

  .single_header_inner .title h1 {
    font-size: 30px;
  }

  .single_header_inner .title .sub {
    font-size: 20px;
  }

  .single_col>div .text h2 {
    font-size: 22px;
  }

  .single_col>div .text .title p {
    font-size: 16px;
  }

  .project_btn {
    margin-top: 40px;
  }

  .project_btn a {
    max-width: 360px;
  }

  .project_btn a span {
    font-size: 16px;
  }

  #single .project_custom .table_wrap {
    padding: 20px;
    margin: 40px auto;
  }

  #single .project_custom .table_wrap table th {
    padding: 20px;
    font-size: 18px;
    width: 140px;
  }

  #single .project_custom .table_wrap table td {
    padding: 20px;
  }

  .single_header .line {
    width: 100px;
  }
}

@media screen and (max-width:768px) {
  .single_header_inner {
    padding: 60px 10px 10px;
  }

  .single_header_inner .title .sub {
    font-size: 16px;
  }

  .single_header_inner .title h1 {
    font-size: 20px;
  }

  .project_btn a {
    padding: 15px;
  }

  .project_btn a::before {
    right: 20px;
  }

  #single .project_custom ol {
    gap: 20px;
  }

  #single .project_custom ol li {
    max-width: max-content;
    padding: 10px;
    font-size: 16px;
  }

  .single_contents {
    padding: 40px 0;
  }

  .single_contents h2 {
    font-size: 22px;
  }

  .single_contents h3 {
    font-size: 18px;
  }
}

@media screen and (max-width:568px) {
  .single_header_inner {
    align-items: center;
    flex-flow: column-reverse;
    gap: 20px;
  }

  .single_header_inner .image {
    width: 100%;
  }

  .single_header_inner .title {
    width: 100%;
  }

  .single_col>div {
    margin: 40px auto;
    gap: 20px;
    flex-flow: column;
  }

  #single .project_custom .table_wrap table th {
    font-size: 16px;
    width: 100px;
    padding: 10px;
  }

  #single .project_custom .table_wrap table td {
    padding: 10px;
    font-size: 14px;
    padding: 10px;
  }

  .single_header .line {
    display: none;
  }
}

/*=====================================
*
*page
*
=======================================*/
.page_header {
  background: url(../images/header-bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}

.page_header_inner {
  padding: 100px 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.page_header_inner .image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 10px 0 #0000001f;
  background: #fff;
}

.page_header_inner .image img {
  opacity: .4;
}

.page_header_inner .title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.page_header_inner .title h1 {
  font-size: 40px;
  color: var(--pink);
  font-weight: 500;
}

.page_header_inner .title .sub {
  font-size: 30px;
  font-weight: 500;
}

.page_header .line {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 300px;
}

#page .center_text {
  margin: 60px auto;
  font-size: 18px;
  line-height: 2.2;
}

#page .page_title {
  text-align: center;
  margin: 60px auto;
}

#page .page_title .sub {
  font-size: 20px;
  font-weight: 500;
  color: #111;
}

#page .page_title h2 {
  color: var(--pink);
  font-weight: 500;
  font-size: 36px;
}

#page .page_col3>div {
  margin: 60px auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

#page .page_col3>div .page_col3_inner {
  width: 32%;
  line-height: 1.8;
}

#page .page_col3>div .page_col3_inner h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}

#page .page_col3>div .page_col3_inner figure {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 10px 0 #0000001f;
  margin: 10px auto;
}

#page .page_btn_list>div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#page .page_btn_list>div .btn_inner {
  width: 24%;
  margin: 20px 0;

}

#page .page_btn_list>div .btn_inner .wp-block-button {
  width: 100%;
}

#page .page_btn_list>div .btn_inner a {
  background: var(--pink);
  color: #fff;
  display: block;
  width: 100%;
  border-radius: 10px;
  position: relative;
  padding-bottom: 20px;
  transition: ease all .3s;
}

#page .page_btn_list>div .btn_inner a:hover {
  opacity: .7;
}

#page .page_btn_list>div .btn_inner a::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%) rotate(90deg);
  width: 32px;
  height: 32px;
  background: url(../images/btn-arrow.png) no-repeat center center, #fff;
  background-size: 10px;
  border: 1px solid var(--pink);
  border-radius: 50%;
}

#page .page_btn_list>div .btn_inner a strong {
  display: block;
  font-weight: 500;
}

#page .page_flex>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px auto;
}

#page .page_flex>div figure {
  width: 46%;
  box-shadow: 0 5px 10px 0 #0000001f;
  border-radius: 10px;
  overflow: hidden;
}

#page .page_flex>div .text {
  width: 52%;
  line-height: 1.8;
}

#page .page_flex>div .text .sub {
  font-size: 36px;
  font-weight: 500;
  color: var(--pink);
}

#page .page_flex>div .text h3 {
  font-size: 30px;
  font-weight: 500;
  margin: 10px 0 20px;
  line-height: 1.4;
}

#page .page_btn {
  margin: 60px auto;
  text-align: center;
  justify-content: center;
}

#page .page_btn .wp-block-button {
  width: 100%;
  max-width: 460px;
}

#page .page_btn a {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--pink);
  color: #333;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  transition: ease all .3s;
}

#page .page_btn a:hover {
  opacity: .7;
}

#page .page_btn a strong {
  color: var(--pink);
  font-weight: 500;
  font-size: 24px;
}

#page .page_btn a::before {
  content: '';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 16px;
  background: url(../images/btn-arrow.png) no-repeat center center;
  background-size: cover;
}

@media screen and (max-width:1260px) {
  .page_header .line {
    width: 100px;
  }

  .page_header_inner .title {
    top: 55%;
  }

  .page_header_inner .title h1 {
    font-size: 30px;
  }

  .page_header_inner .title .sub {
    font-size: 20px;
  }
}

@media screen and (max-width:968px) {
  .page_header_inner .title h1 {
    font-size: 24px;
  }

  .page_header_inner .title .sub {
    font-size: 18px;
  }

  #page .page_title {
    margin: 10px 0 20px;
  }

  #page .page_title .sub {
    font-size: 18px;
  }

  #page .page_title h2,
  #page .page_flex>div .text .sub {
    font-size: 24px;
  }

  #page .page_btn_list>div .btn_inner a {
    padding: 10px;
    padding-bottom: 20px;
  }

  #page .page_flex>div .text h3 {
    font-size: 20px;
    margin: 10px auto;
  }

  #page .page_col3>div {
    gap: 20px;
  }

  #page .page_col3>div .page_col3_inner h3 {
    font-size: 16px;
  }

  #page .center_text {
    font-size: 16px;
    margin: 20px auto;
    line-height: 2;
  }
}

@media screen and (max-width:768px) {
  .page_header_inner {
    padding: 60px 10px 10px;
  }

  .page_header_inner .title {
    top: 60%;
    padding: 0 20px;
  }

  .page_header_inner .title h1 {
    font-size: 20px;
  }

  .page_header_inner .title .sub {
    font-size: 16px;
  }

  .page_header_inner .image {
    height: 100px;
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .page_header_inner .image img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: inherit;
    height: 100%;
  }

  .page_header .line {
    display: none;
  }

  #page .page_title .sub {
    font-size: 16px;
  }

  #page .page_title h2,
  #page .page_flex>div .text .sub {
    font-size: 22px;
  }

  #page .page_flex>div .text h3 {
    font-size: 18px;
  }

  #page .page_btn_list>div .btn_inner {
    width: 48%;
  }

  #page .page_col3>div {
    gap: 40px;
    flex-flow: column;
  }

  #page .page_col3>div .page_col3_inner {
    width: 100%;
    text-align: center;
  }

  #page .page_col3>div .page_col3_inner h3 {
    font-size: 20px;
  }

  #page .page_col3>div .page_col3_inner figure {
    display: inline-block;
  }

  #page .page_col3>div .page_col3_inner p {
    text-align: left;
  }

  #page .page_flex>div {
    flex-flow: column;
    gap: 20px;
  }

  #page .page_flex>div figure {
    width: 100%;
  }

  #page .page_flex>div .text {
    width: 100%;
  }
}

@media screen and (max-width:568px) {
  .page_header_inner .title {
    top: 65%;
  }

  .page_header_inner .title .sub {
    font-size: 14px;
  }

  #page .page_btn_list>div .btn_inner a {
    font-size: 14px;
  }

  #page .page_btn a {
    font-size: 14px;
  }

  #page .page_btn a strong {
    font-size: 18px;
  }
}

/*=====================================
*
*flow
*
=======================================*/
.flow {
  padding: 80px 0 0;
}

.flow .flow_list {
  margin: 40px auto;
}

.flow .flow_list ol {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  position: relative;
}

.flow .flow_list ol li {
  width: 32%;
}

.flow .flow_list ol li.arrow {
  position: absolute;
  left: 0;
  height: calc(100% - 70px);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  pointer-events: none;
}

.flow .flow_list ol li .inner {
  border: 2px solid #faabc2;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 5px 10px 0 #0000001f;
}

.flow .flow_list ol li .inner .title {
  width: 100%;
  background: #faabc2;
  padding: 10px 20px;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
}

.flow .flow_list ol li .inner .title span {
  margin-right: 10px;
}

.flow .flow_list ol li .text {
  margin-top: 10px;
}

.flow .flow_list .bottom {
  display: inline-block;
  margin: 40px auto 0;
  background: #fffafb;
  padding: 20px;
  border: 1px solid #eea1b8;
  border-radius: 10px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.flow .flow_list .bottom .title {
  color: var(--pink);
  font-size: 18px;
  margin-bottom: 10px;
}

.flow .flow_list .bottom p {
  line-height: 1.8;
}

@media screen and (max-width:968px) {
  .flow {
    padding: 40px 0;
  }

  .flow .flow_list {
    margin: 40px auto 0;
  }

  .flow .flow_list ol li.arrow img {
    width: 40px;
  }

  .flow .flow_list ol li .inner .title {
    padding: 10px;
    font-size: 16px;
  }

  .flow .flow_list ol li .inner .title span {
    display: block;
    margin-right: 0;
    margin-bottom: 5px;
  }
}

@media screen and (max-width:768px) {
  .project_custom h2 {
    font-size: 22px;
    margin: 20px auto;
  }

  .flow .flow_list ol {
    gap: 10px;
  }

  .flow .flow_list ol li.arrow img {
    width: 20px;
  }

  .flow .flow_list ol li .inner .title {
    font-size: 14px;
  }

  #single .project_custom .table_wrap {
    padding: 10px;
  }
}

@media screen and (max-width:568px) {
  .flow .flow_list ol {
    gap: 40px;
    flex-flow: column;
  }

  .flow .flow_list ol li {
    width: 100%;
  }

  .flow .flow_list ol li .inner .title {
    font-size: 18px;
  }

  .flow .flow_list ol li .inner .image {
    text-align: center;
  }

  .flow .flow_list ol li.arrow {
    flex-flow: column;
    height: 100%;
  }

  .flow .flow_list ol li.arrow img {
    transform: rotate(90deg);
  }
}

@media screen and (max-width:420px) {
  #single .project_custom .table_wrap table th {
    font-size: 14px;
  }

  #single .project_custom .table_wrap table td {
    font-size: 12px;
  }
}

/*=====================================
*
*archive
*
=======================================*/
.archive_header {
  background: url(../images/header-bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}

.archive_header_inner {
  padding: 100px 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.archive_header_inner .image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 10px 0 #0000001f;
  background: #fff;
}

.archive_header_inner .image img {
  opacity: .4;
}

.archive_header_inner .title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.archive_header_inner .title h1 {
  font-size: 30px;
  font-weight: 500;
}

.archive_header_inner .title .sub {
  font-size: 40px;
  color: var(--pink);
  font-weight: 500;
}

.archive_header_inner .archive_title {
  font-size: 40px;
  color: var(--pink);
  font-weight: 500;
  position: absolute;
  left: 50%;
  top: 57%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.archive_header .line {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 300px;
}

#archive h2 {
  font-weight: 500;
  font-size: 36px;
  text-align: center;
  margin: 60px auto 20px;
  color: var(--pink);
}

#archive h2.left {
  text-align: left;
}

#archive .list_text {
  margin: 20px auto;
}

#archive .list {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

#archive .list li a {
  min-width: 300px;
  display: inline-block;
  background: var(--pink);
  color: #fff;
  border-radius: 10px;
  padding: 20px 10px;
  text-align: center;
  font-size: 20px;
  line-height: 1;
}

#archive .list.feature li a {
  min-width: 200px;
}

#archive .center_text {
  margin: 40px auto;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
}

#archive .works_list {
  margin: 40px auto;
}

#archive .works_list ol {
  display: flex;
  flex-flow: column;
  gap: 40px;
}

#archive .works_list ol li {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 10px 0 #0000001f;
}

#archive .works_list ol li a {
  padding: 40px;
  display: flex;
  justify-content: space-between;
}

#archive .works_list ol li a .image {
  border-radius: 10px;
  overflow: hidden;
  width: 46%;
}

#archive .works_list ol li a .text {
  width: 50%;
  color: #111;
}

#archive .works_list ol li a .text .cate {
  color: var(--pink);
  display: inline-block;
  font-size: 14px;
  padding: 8px 14px;
  line-height: 1;
  border-radius: 5px;
  background: #fff;
  border: 1px solid var(--pink);
}

#archive .works_list ol li a .text h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 10px auto 40px;
}

#archive .works_list ol li a .text h3 br {
  display: none;
}

#archive .works_list ol li a .text .inner {
  margin: 10px auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#archive .works_list ol li a .text .inner .name {
  color: #111;
  font-weight: 500;
}

#archive .works_list ol li a .text .inner .cont {
  color: #333;
}

#archive .works_list ol li a .text .more {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  font-weight: 500;
  font-size: 18px;
  color: var(--pink);
  margin-top: 40px;
}

#archive .works_list ol li a .text .more::after {
  content: '';
  width: 11px;
  height: 13px;
  background: url(../images/btn-arrow.png)no-repeat center center;
  background-size: 100%;
  margin-left: 10px;
}

.noproject {
  text-align: center;
  margin: 40px auto;
  font-size: 20px;
}

#archive .pagination {
  margin: 20px auto 60px;
}

#archive .pagination ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

#archive .pagination ul li a {
  color: #111;
  font-weight: 500;
}

#archive .pagination ul li span {
  width: 30px;
  height: 30px;
  background: var(--pink);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.archive_contents {
  padding: 80px 0;
}

.archive_contents .looplist ol {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.archive_contents .looplist ol li {
  width: calc((100% / 3) - 10px);
}

.archive_contents .looplist ol li a {
  box-shadow: 0 5px 10px 0 #0000001f;
  border-radius: 10px;
  background: #fff;
  padding: 20px;
  display: block;
  color: #333;
}

#archive .archive_contents .looplist ol li a h2 {
  font-size: 18px;
  text-align: left;
  margin: 10px auto;
}

#archive .archive_contents .looplist ol li a time {
  font-size: 14px;
  margin-top: 5px;
  display: block;
}

@media screen and (max-width:1260px) {
  .archive_header .line {
    width: 100px;
  }

  .archive_header_inner .title {
    top: 55%;
  }

  .archive_header_inner .title h1 {
    font-size: 20px;
  }

  .archive_header_inner .title .sub {
    font-size: 30px;
  }

  .archive_header_inner .archive_title {
    font-size: 30px;
  }
}

@media screen and (max-width:968px) {
  .archive_header_inner .title h1 {
    font-size: 18px;
  }

  .archive_header_inner .title .sub {
    font-size: 24px;
  }

  .archive_header_inner .archive_title {
    font-size: 24px;
  }

  #archive h2 {
    font-size: 26px;
  }

  #archive .list {
    gap: 20px;
  }

  #archive .list li a {
    min-width: inherit;
    padding: 10px 20px;
    font-size: 16px;
  }

  #archive .list.feature li a {
    min-width: inherit;
  }

  #archive .works_list ol li a {
    padding: 20px;
  }

  #archive .works_list ol li a .text h3 {
    font-size: 18px;
    margin: 10px auto;
  }
}

@media screen and (max-width:768px) {
  .archive_header_inner {
    padding: 60px 10px 10px;
  }

  .archive_header_inner .title {
    top: 60%;
    padding: 0 20px;
  }

  .archive_header_inner .title h1 {
    font-size: 16px;
  }

  .archive_header_inner .title .sub {
    font-size: 20px;
  }

  .archive_header_inner .archive_title {
    font-size: 20px;
  }

  .archive_header_inner .image {
    height: 100px;
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .archive_header_inner .image img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: inherit;
    height: 100%;
  }

  .archive_header .line {
    display: none;
  }

  #archive h2 {
    margin-top: 40px;
  }

  #archive .center_text {
    font-size: 16px;
    margin: 20px auto;
  }

  #archive .works_list ol li a {
    flex-flow: column;
    gap: 20px;
  }

  #archive .works_list ol li a .image {
    width: auto;
    margin: 0 auto;
  }

  #archive .works_list ol li a .text {
    width: 100%;
  }
}

@media screen and (max-width:568px) {
  .archive_header_inner .title {
    top: 65%;
  }

  .archive_header_inner .title .sub {
    font-size: 18px;
  }

  .archive_header_inner .archive_title {
    font-size: 18px;
  }

  #archive h2 {
    font-size: 22px;
  }

  #archive .list {
    gap: 10px;
  }
}

/*=====================================
*
*breadcrumb
*
=======================================*/

/*=====================================
*
*toc
*
=======================================*/

/*=====================================
*
*footer
*
=======================================*/
footer {
  background: #fff;
}

footer .footer_inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

footer .footer_inner .logo {
  width: 230px;
}

footer .footer_inner ul {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  transform: rotate(.03deg);
}

footer .footer_inner ul li a {
  color: #333;
  font-weight: 500;
}

footer .copyright {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  background: var(--pink);
  padding: 5px 0;
  color: #fff;
  transform: rotate(.03deg);
}

@media screen and (max-width:968px) {
  footer .footer_inner {
    padding: 20px 10px;
  }

  footer .footer_inner .logo {
    width: 160px;
  }
}

@media screen and (max-width:768px) {
  footer .footer_inner {
    display: block;
  }

  footer .footer_inner .logo {
    margin: 0 auto;
  }

  footer .footer_inner ul {
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
    flex-wrap: wrap;
  }

  footer .footer_inner ul li a {
    font-size: 14px;
  }
}

/*=====================================
*
*pc&tablet&spのnone処理
*
=======================================*/
/*=====================================
*pcのみ
=======================================*/
@media screen and (min-width: 1025px) {
  .pcnone {
    display: none;
  }
}

/*=====================================
*tablet用
=======================================*/
@media screen and (max-width: 1024px) and (min-width: 415px) {
  .tabnone {
    display: none;
  }
}

/*=====================================
*sp用
=======================================*/
@media screen and (max-width:414px) {
  .spnone {
    display: none;
  }
}