@charset "utf-8";
/* CSS Document */
* {
	box-sizing: border-box;
    padding: 0;
}

html {
	font-size: 100%;
}

body {
	color: #333;
    /*font-family: "Noto Serif JP", serif;*/
	min-height: 100vh;
    box-sizing: border-box;
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
    overflow-x: hidden;
    /*font-feature-settings: "halt";*/
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

li {
	list-style: none;
}

a {
  color: #616161;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}

p {
    font-size: 18px;
}

@media screen and (min-width: 768px) {
    .sp {
        display: none;
    }
}
@media screen and (max-width: 1024px) {
    .pc {
        display: none;
    }
}
@media screen and (min-width: 1025px) {
    .pc-none {
        display: none;
    }
}
/*-------------------------------------------
ヘッダー
-------------------------------------------*/
#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    height: 70px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999!important;
    background-color: #fff;
    transition: 0.3s;
}

#header .header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#header .header_inner .logo {
    width: 25%;
    text-align: center;
    line-height: 1;
}

#header .header_inner .logo img {
    width: 240px;
}

#header .header_inner .menu {
    display: flex;
    align-items: center;
    width: 75%;
}

#header .header_inner .menu .menu_list {
    width: calc(100%/4);
    border-left: 1px solid #008D95;
}

/*#header .header_inner .menu > li:last-of-type {
    border-right: 1px solid #616161;
}*/

#header .header_inner .menu .menu_list .menu_title {
    text-align: center;
    display: flex;
    height: 70px;
    flex-direction: column;
    justify-content: center;
    letter-spacing: 1px;
    color: #008D95;
    font-weight: normal;
}

#header .header_inner .menu .menu_list .drop_menu_list a {
    text-align: center;
    display: flex;
    height: 70px;
    flex-direction: column;
    justify-content: center;
    letter-spacing: 1px;
    color: #008D95;
    font-size: 16px;
}

/*#header .header_inner .menu .menu_list.contact a {
    text-align: center;
    display: flex;
    height: 50px;
    flex-direction: column;
    justify-content: center;
    letter-spacing: 1px;
}*/

#header .header_inner .menu .menu_list a:hover {
    /*background-color: #083090;*/
    color: #008D95;
    font-weight: bold;
}

#header .header_inner .menu .menu_list:hover .drop_menu_list {
    transform: scaleY(1);
}

#header .header_inner .menu .menu_list a .ja,
#header .header_inner .menu .menu_list p .ja {
    display: block;
    line-height: 1;
    font-size: 16px;
    margin-bottom: 3px;
}

/*#header .header_inner .menu .menu_list a .en {
    font-size: 10px;
    display: block;
    line-height: 1;
    font-weight: bold;
}*/

/*#header .header_inner .menu .contact {
    background-color: #232323;
    border-left: none;
    transition: all 0.3s ease;
    border-right: 1px solid #fff;
}
#header .header_inner .menu .contact:hover {
    background-color: #005CAF;
    transition: all 0.3s ease;
}

#header .header_inner .menu .contact a {
    color: #fff;
    position: relative;
    /*padding-left: 12%;
}*/

#header .header_inner .menu .contact a:hover {
    background-color: inherit;
}



#header .header_inner .menu .menu_list a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    overflow: hidden;
    position: relative;
    transition-duration: .4s;
    z-index: 2;
    color: #008D95;
}
#header .header_inner .menu .menu_list a::after {
  background: #008D95;
  /*border-radius: 50%;*/
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity .5s, transform 0s;
  transition-delay: 0s, .4s;
}
#header .header_inner .menu .menu_list a.menu_contact::after {
  background: #F29904;
  /*border-radius: 50%;*/
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity .5s, transform 0s;
  transition-delay: 0s, .4s;
}


#header .header_inner .menu .menu_list a:hover {
    color: #fff;
    opacity: 1
}
#header .header_inner .menu .menu_list a:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    transition-delay: 0s;
    transition: opacity .4s, transform .4s ease-in-out;
}

/*---------------------------------
ドロップダウンメニュー
----------------------------------*/
.drop_menu {
    position: relative;
}

.drop_menu .drop_menu_list {
    position: absolute;
    top: 100%;
    /*width: max-content;*/
    width: 100%;
    z-index: 1;
    transform: scaleY(0);
    transform-origin: center top;
    transition: transform 0.3s;
}

.drop_menu .drop_menu_list li a {
    padding: 0 8px;
    font-size: 13px;
    border-bottom: 1px solid #008D95;
}

.drop_menu .drop_menu_list li:first-of-type a {
    border-top: 1px solid #008D95;
}
.drop_menu .drop_menu_list li:last-of-type a {
    border-bottom: none;
}

.drop_menu .drop_menu_list .drop_menu_item {
    background-color: rgba(255,255,255,0.90);
    transition: opacity 0.3s;
}

#header .menu_info {
    display: flex;
}

#header .menu_info a {
    text-align: center;
    height: 50px;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

 
@media screen and (max-width: 1024px) {
    #header .header_inner .logo {
        padding: 0 0 0 20px;
    }

    #header .header_inner .logo img {
        max-width: inherit;
    }

    #header .header_inner .hamburger {
        width: 43px;
        height: 43px;
        /*background-color: #008D95;*/
        border-radius: 50%;
        cursor: pointer;
        position: fixed;
        top: 16px;
        right: 6px;
        z-index: 30;
    }
    
    #header .header_inner .hamburger span {
        width: 25px;
        height: 2px;
        background-color: #008D95;
        display: block;
        position: absolute;
        transition: 0.3s ease-in-out;
        left: 9px;
    }
    
    #header .header_inner .hamburger span:nth-child(1) {
        top: 8px;
        width: 15px;
    }
    #header .header_inner .hamburger span:nth-child(2) {
        top: 16px;
        width: 20px;
    }
    #header .header_inner .hamburger span:nth-child(3) {
        top: 24px;
    }
    
   #header.open .header_inner .hamburger span:nth-child(1) {
        top: 16px;
        background-color: #008D95;
        transform: rotate(-45deg);
        width: 25px;
    }
    #header.open .header_inner .hamburger span:nth-child(2) {
        display: none;
    }
    #header.open .header_inner .hamburger span:nth-child(3) {
        top: 16px;
        background-color: #008D95;
        transform: rotate(45deg);
    }
    
    #header .header_inner .menu {
        width: 100%;
        height: 100%;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        opacity: 0;
        transition: all 0.3s ease;
        position: fixed;
        top: 0;
        right: 0;
        visibility: hidden;
        z-index: 20;
        margin-top: 70px;
    }
    
    #header.open .header_inner .menu {
        opacity: 1;
        visibility: visible;
        overflow: scroll;
    }
        
    #header .header_inner .menu .menu_list {
        width: 100%;
        border-left: none;
    }
    
    #header .header_inner .menu .menu_list a {
        align-items: inherit;
    }
    
    #header .header_inner .menu .menu_list a:hover {
        color: #fff;
    }

    #header .header_inner .menu .menu_list .menu_title {
        background-color: #008D95;
        padding-left: 15px;
        color: #fff;
        text-align: left;
        height: 64px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }

    #header .header_inner .menu .menu_list .drop_menu_list a {
        text-align: left;
        height: 38px;
        padding-left: 30px;
    }
    
    #header .header_inner .menu .menu_list .menu_title.menu_contact {
        background-color: #F29904;
    }
    #header .header_inner .menu .menu_list .menu_title.menu_recruit {
        position: relative;
    }
    /*#header .header_inner .menu .menu_list .menu_title.menu_recruit::before {
        position: absolute;
        content: "";
        display: inline-block;
        background-image: url("../images/menu_mail.svg");
        background-size: contain;
        vertical-align: middle;
        width: 28px;
        height: 28px;
        left: 0;
        top: 0;
        background-repeat: no-repeat;
    }*/
    
    .drop_menu {
        position: static;
    }

    .drop_menu .drop_menu_list {
        position: static;
        top: 100%;
        /*width: max-content;*/
        width: 100%;
        z-index: 999;
        transform: scaleY(1);
        transform-origin: center top;
        transition: transform 0.3s;
    }
    
    .drop_menu .drop_menu_list .drop_menu_item {
        background-color: #E9E9E9;
    }

    .drop_menu .drop_menu_list .drop_menu_item:nth-of-type(odd) {
        background-color: #F4F4F4;
    }

    .drop_menu .drop_menu_list li a {
        border-bottom: none;
    }
    
    .drop_menu .drop_menu_list li:first-of-type a {
        border-top: none;
    }
    
    
    
}

@media screen and (max-width: 767px) {
    #header .header_inner .logo {
        padding-left: 0;
        padding-top: 0;
    }
    #header .header_inner .logo img {
        width: 190px;
        /*background-color: #fff;*/
        padding: 6px 12px;
        /*border-radius: 5px;*/
    }
    
    #header .header_inner .menu .menu_list .menu_title {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        height: 60px;
    }
    
    #header .header_inner .menu .menu_list a .ja {
        margin-right: 9px;
    }
}


/* ---------------------------------------
スマホメニューのアコーディオン
---------------------------------------- */
@media screen and (max-width: 1024px) {
    .accordion_box {
        
    }
    .accordion_box > li {
        /*margin: 30px 0;*/
        border: 1px solid #fff;
    }

    .accordion_box .title {
        position: relative;
        padding: 15px 50px;
    }

    /*＋アイコン*/
    .accordion_box .title::before,
    .accordion_box .title::after{
        position: absolute;
        content:'';
        width: 15px;
        height: 2px;
        background-color: #fff;
        transition: all .2s ease;
    }

    .accordion_box .title::before{
        top:48%;
        right: 15px;
        transform: rotate(0deg);
    }

    .accordion_box .title::after{    
        top:48%;
        right: 15px;
        transform: rotate(90deg);
    }

    /*closeというクラスがついたら×に変化*/
    .accordion_box .title.close::before{
        transform: rotate(45deg);
    }

    .accordion_box .title.close::after{
        transform: rotate(-45deg);
    }

    .accordion_box .box {
        display: none;/*はじめは非表示*/
        /*margin: 0 20px 20px;
        padding: 20px;
        background: #f4f4f4;*/
    }
}
/*-----------------------
トップメインビジュアル
------------------------*/
.mainvisual {
    width: 100%;
    position: relative;
    margin-top: 70px;
    margin-bottom: 46px;
}

.mainvisual img {
    width: 100%;
    object-fit: cover;
}

.mainvisual .mv_text {
    position: absolute;
    bottom: 28%;
    left: 8%;
}

.mainvisual .mv_text span {
    color: #008D95;
    font-weight: bold;
}

.mainvisual .mv_text .mv_catch {
    font-size: 68px;
    color: #008D95;
    margin-bottom: 8px;
    letter-spacing: 16px;
    line-height: 1.6;
}

.mainvisual .mv_text .mv_catch span {
    font-weight: 550;
    background: #fff;
    padding-left: 8px; 
}

.mainvisual .mv_text .mv_catch .punctuation {
    /*letter-spacing: -40px;*/
}

.mainvisual .mv_text p {
    font-size: 24px;
    letter-spacing: 2px;
    color: #F29904;
}


@media screen and (max-width: 1024px) {
    .mainvisual {
        width: 100%;
        position: relative;
        margin-bottom: 0;
    }
    
    .mainvisual img {
        height: auto;
    }
    .mainvisual .mv_text {
        top: 36%;
        left: 4%;
    }

    .mainvisual .mv_text .mv_catch {
        font-size: 42px;
    }

    .mainvisual .mv_text p {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .mainvisual .mv_text {
        top: 26%;
        left: 4%;
    }

    .mainvisual .mv_text .mv_catch {
        letter-spacing: 2px;
        line-height: 1.8;
    }

    .mainvisual .mv_text p {
        font-size: 16px;
    }
}
@media screen and (max-width: 599px) {
    .mainvisual .mv_text {
    }

    .mainvisual .mv_text .mv_catch {
        font-size: 26px;
    }

    .mainvisual .mv_text p {
        font-size: 13px;
    }
}

/*-----------------------
スクロール促す
------------------------*/
.scroll_down {
    position:absolute;
    bottom: 3%;
    left: 20%;
}

.scroll_down a {
    position: absolute;
    left: 10px;
    bottom: 87px;
    color: #008D95;
    font-size: 14px;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: .2em;
    writing-mode: vertical-lr;
    text-decoration: none;
    text-transform: uppercase;
}

.scroll_down:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background:#008D95;
    animation:
        circlemove 1.6s ease-in-out infinite,
        cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
    0%{bottom:160px;}
    100%{bottom:0px;}
}

@keyframes cirlemovehide{
    0%{opacity:0}
    50%{opacity:1;}
    80%{opacity:0.9;}
    100%{opacity:0;}
}

.scroll_down:after{
    content:"";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2px;
    height: 160px;
    background: #008D95;
}

@media screen and (max-width: 1024px) {
    .scroll_down {
        display: none;
    }
}

/*-----------------------
コンテンツ
-----------------------*/
.inner {
    width: 100%;
    margin: 0 auto;
    max-width: 1260px;
}
@media screen and (max-width: 1260px) {
    .inner {
        max-width: 1100px;
        padding: 0 20px;
    }
}

.caption {
    /*font-size: 18px;*/
    line-height: 1.8;
}

@media screen and (max-width: 1024px) {
    .caption {
        font-size: 16px;
        line-height: 1.6;
    }
}

/*-----------------------
ヘディング
-----------------------*/
.top_heading {
    /*background-image: linear-gradient(0deg, rgba(26, 183, 188, 1), rgba(0, 128, 145, 1));
    border-bottom: 14px solid #F29904;*/
    width: 100%;
    overflow-x: clip;
    position: relative;
    max-width: 1260px;
    margin: 0 auto;
}

.top_heading .bgline {
    position: absolute;
    content: "";
    display: block;
    width: 390px;
    height: 16px;
    background-image: linear-gradient(90deg, rgba(242, 153, 4, 1), rgba(242, 153, 4, 0));
    top: 5%;
    left: 0;
}
.top_heading .bgline_2 {
    position: absolute;
    content: "";
    display: block;
    width: 320px;
    height: 54px;
    background-image: linear-gradient(90deg, rgba(242, 153, 4, 1), rgba(242, 153, 4, 0));
    top: 0;
    right: 0;
}

.top_heading .top_heading-img {
    position: absolute;
    width: 420px;
    right: 0;
    top: 5%;
}

.top_heading .inner {
    padding: 90px 0 0 0;
    width: 100%;
    position: relative;
}

.top_heading p {
    font-weight: bold;
}

.top_heading .top_heading_lead .caption {
    margin-bottom: 36px;
    font-size: 22px;
    line-height: 2;
    font-family: "Noto Serif JP", serif;
    color: #008D95;
    font-weight: 500;
}

.top_heading .top_heading_lead .catch {
    font-size: 54px;
    line-height: 1.8;
    letter-spacing: 1px;
    box-decoration-break: clone;	
	-webkit-box-decoration-break: clone;
	display: inline;
	background-image: linear-gradient(90deg, rgba(26, 183, 188, 1), rgba(0, 128, 145, 1));
    color: #fff;
    padding: 0 4px 2px 8px;
    font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 1024px) {
    .top_heading {
        margin-bottom: 300px;
    }
    
    .top_heading .inner {
        padding: 32px 4%;
        align-items: flex-start;
        flex-direction: column;
    }
    
    .top_heading .bgline {
        width: 180px;
        height: 16px;
        top: inherit;
        bottom: -30%;
        left: 0;
    }
    
    .top_heading .bgline_2 {
        width: 320px;
        height: 54px;
        top: inherit;
        bottom: -8%;
        right: -5%;
    }

    .top_heading .top_heading-img {
        width: 60%;
        right: 6%;
        top: inherit;
        bottom: -48%;
    }
}

@media screen and (max-width: 767px) {
    .top_heading {
        margin-bottom: 200px;
    }
    
    .top_heading .bgline {
        width: 60px;
        height: 16px;
        top: inherit;
        bottom: -30%;
        left: 0;
    }
    .top_heading .bgline_2 {
        width: 180px;
        height: 54px;
        top: inherit;
        bottom: -20%;
        right: -8%;
    }
    
    .top_heading .inner {
        padding: 16px 10%;
        width: 100%;
    }

    .top_heading .inner::before {
        width: 180px;
        height: 180px;
        right: -14%;
        top: -15%;
    }

    .top_heading .inner::after {
        width: 90px;
        height: 90px;
        right: -5%;
        top: 42%;
    }
    
    .top_heading .top_heading_lead .caption {
        font-size: 15px;
        font-weight: bold;
        margin-bottom: 8px;
    }
    
    .top_heading .top_heading_lead .catch {
        font-size: 20px;
        line-height: 1.8;
        letter-spacing: 4px;
        text-underline-offset: 4px;
        text-decoration-thickness: 1px;
    }
}

/*-----------------------
サマリー
-----------------------*/
.top_summary {
    position: relative;
    margin-bottom: 90px;
    max-width: 1260px;
    margin: 0 auto;
}

.top_summary .inner {
    padding: 80px 0;
    width: 100%;
}

.top_summary .caption {
    line-height: 2;
    font-size: 19px;
    font-family: "Noto Serif JP", serif;
}

.top_summary .summary_figure {
    margin-top: 0;
}

.top_summary .summary_figure img {
    width: 76%;
}

.top_summary .summary_pic .summary_pic01 {
    position: absolute;
    top: -15%;
    right: 2%;
    width: 420px;
}

.top_summary .summary_pic .summary_pic02 {
    position: absolute;
    right: 0;
    top: 10%;
    width: 240px;
}

.top_summary .summary_pic .bgline {
    position: absolute;
    content: "";
    display: block;
    width: 390px;
    height: 40px;
    background-image: linear-gradient(270deg, rgba(242, 153, 4, 1), rgba(242, 153, 4, 0));
    top: 19.5%;
    right: 0;
}

@media screen and (max-width: 1024px) {
    .top_summary .inner {
        padding: 60px 4%;
        width: 100%;
    }
    
    .top_summary .summary_pic .summary_pic01 {
        position: absolute;
        top: 0;
        right: inherit;
        left: 4%;
        width: 560px;
    }

    .top_summary .summary_pic .summary_pic02 {
        position: absolute;
        right: 0;
        top: 24%;
        width: 280px;
    }
    
    .top_summary .summary_pic .bgline {
        display: block;
        width: 80%;
        height: 60px;
        top: 33%;
        right: 0;
    }
    
    .top_summary .caption {
        line-height: 1.6;
        margin-top: 480px;
    }
    
    .top_summary .summary_figure {
        margin-top: 36px;
    }

    .top_summary .summary_figure img {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .top_summary {
        margin-bottom: 40px;
    }
    
    .top_summary .inner {
        padding: 20px 8% 20px 8%;
        width: 100%;
    }
    
    .top_summary .summary_pic .summary_pic01 {
        top: -3%;
        right: inherit;
        left: 6%;
        width: 280px;
    }

    .top_summary .summary_pic .summary_pic02 {
        position: absolute;
        right: 0;
        top: 8%;
        width: 140px;
    }
    
    .top_summary .summary_pic .bgline {
        width: 280px;
        height: 40px;
        top: 10.5%;
        right: 0;
    }
    
    .top_summary .caption {
        line-height: 1.6;
        font-size: 14px;
        text-align: justify;
        margin-top: 210px;
    }
}

/*-----------------------
サマリーディテール
-----------------------*/
.summary_detail {
    position: relative;
    max-width: 1260px;
    margin: 0 auto;
}

.summary_detail::after {
	content: "";
	position: absolute;
	display: inline-block;
	background-image: url("../images/character/animal_04.png");
	background-size: contain;
	vertical-align: middle;
	width: 240px;
	height: 240px;
    right: -2%;
    bottom: -140px;
	background-repeat: no-repeat;
    z-index: 1;
}

.summary_detail .summary-list {
    width: 100%;
    margin: 0 auto;
}

.summary_detail .summary-list .summaly-item {
    display: flex;
    width: 100%;
    height: 100%;
    margin-bottom: 76px;
    overflow-x: clip;
}

.summary_detail .summary-list .summaly-item.future .icon,
.summary_detail .summary-list .summaly-item.creation .icon {
    width: 14%;
    margin-right: 2%;
    background-image: linear-gradient(90deg, rgba(26, 183, 188, 1), rgba(0, 128, 145, 1));
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 20px 20px 0 0;
}

.summary_detail .summary-list .summaly-item.future .icon span,
.summary_detail .summary-list .summaly-item.creation .icon span {
    text-align: right;
}

.summary_detail .summary-list .summaly-item.future .icon img,
.summary_detail .summary-list .summaly-item.creation .icon img {
    width: 76px;
    margin-bottom: 8px;
}

.summary_detail .summary-list .summaly-item.future .icon p,
.summary_detail .summary-list .summaly-item.creation .icon p {
    font-weight: 500;
    letter-spacing: 4px;
    color: #fff;
    font-size: 22px;
    font-family: "Noto Serif JP", serif;
}

.summary_detail .summary-list .summaly-item.future .summary_detail-text,
.summary_detail .summary-list .summaly-item.creation .summary_detail-text {
    width: 54%;
    margin-right: 2%;
}

.summary_detail .summary-list .summaly-item.future .summary_detail-text .summary_detail-lead,
.summary_detail .summary-list .summaly-item.creation .summary_detail-text .summary_detail-lead {
    font-weight: 600;
    color: #008D95;
    font-size: 25px;
    margin-bottom: 12px;
    text-decoration: underline;
    text-decoration-color: #F29904;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
    font-family: "Noto Serif JP", serif;
}

.summary_detail .summary-list .summaly-item.future .summary_detail-text .summary_detail-caption,
.summary_detail .summary-list .summaly-item.creation .summary_detail-text .summary_detail-caption {
    line-height: 1.8;
    font-size: 19px;
}

.summary_detail .summary-list .summaly-item.future .summary_detail-image,
.summary_detail .summary-list .summaly-item.creation .summary_detail-image {
    width: 28%;
    display: flex;
    align-items: flex-start;
}

.summary_detail-image {
    position: relative;
    height: 100%;
}

.summary_detail-image::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 26px;
    background-image: linear-gradient(90deg, rgba(242, 153, 4, 1), rgba(242, 153, 4, 0));
    bottom: -6%;
    left: 0;
}


@media screen and (max-width: 1024px) {
    .summary_detail::after {
        display: none;
    }

    .summary_detail .summary-list .summaly-item {
        flex-direction: column;
        /*border: 2px solid #F29904;*/
    }
    
    .summary_detail .summary-list .summaly-item.future .icon,
    .summary_detail .summary-list .summaly-item.creation .icon {
        width: 100%;
        margin-right: 0;
        margin-bottom: 12px;
        padding: 8px 0 8px 12px;
        align-items: flex-start;
    }
    
    .summary_detail .summary-list .summaly-item.future .icon span,
    .summary_detail .summary-list .summaly-item.creation .icon span {
        display: flex;
        align-items: center;
    }
    
    .summary_detail .summary-list .summaly-item.future .icon img,
    .summary_detail .summary-list .summaly-item.creation .icon img {
        width: 50px;
        margin-bottom: 0;
        margin-right: 24px;
    }

    .summary_detail .summary-list .summaly-item.future .icon p,
    .summary_detail .summary-list .summaly-item.creation .icon p {
        letter-spacing: 5px;
        font-size: 18px;
    }

    .summary_detail .summary-list .summaly-item.future .summary_detail-text,
    .summary_detail .summary-list .summaly-item.creation .summary_detail-text {
        width: 100%;
        margin-right: 0;
        padding: 0 15px;
        margin-bottom: 12px;
        font-size: 14px;
    }

    .summary_detail .summary-list .summaly-item.future .summary_detail-text .summary_detail-lead,
    .summary_detail .summary-list .summaly-item.creation .summary_detail-text .summary_detail-lead {
        font-weight: bold;
        color: #008D95;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .summary_detail .summary-list .summaly-item.future .summary_detail-text .summary_detail-caption,
    .summary_detail .summary-list .summaly-item.creation .summary_detail-text .summary_detail-caption {
        line-height: 1.8;
    }

    .summary_detail .summary-list .summaly-item.future .summary_detail-image,
    .summary_detail .summary-list .summaly-item.creation .summary_detail-image {
        width: 100%;
        padding: 0 15px;
        
    }
    
    .summary_detail .summary-list .summaly-item.future .summary_detail-image::after,
    .summary_detail .summary-list .summaly-item.creation .summary_detail-image::after {
        left: 15px;
    }
    
    .summary_detail-image::after {
        height: 19px;
        bottom: 0;
        left: 0;
        top: inherit;
    }
}

.summary_detail .summary-list .summaly-item.management {
    width: 100%;
}

.summary_detail .summary-list .summaly-item.management .icon {
    width: 14%;
    margin-right: 2%;
    background-image: linear-gradient(90deg, rgba(26, 183, 188, 1), rgba(0, 128, 145, 1));
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 20px 20px 0 0;
}

.summary_detail .summary-list .summaly-item.management .icon span {
    text-align: right;
}

.summary_detail .summary-list .summaly-item.management .icon img {
    width: 80px;
    margin-bottom: 20px;
}

.summary_detail .summary-list .summaly-item.management .icon p {
    font-weight: 500;
    letter-spacing: 4px;
    color: #fff;
    font-size: 22px;
    font-family: "Noto Serif JP", serif;
}

.summary_detail .summary-list .summaly-item.management .management_layout {
    width: 84%;
}

.summary_detail .summary-list .summaly-item.management .management_layout .management_layout-detail {
    display: flex;
    margin-bottom: 32px;
}

.summary_detail .summary-list .summaly-item.management .management_layout .management_layout-detail .summary_detail-text {
    width: 64%;
    margin-right: 2%;
}

.summary_detail .summary-list .summaly-item.management .management_layout .management_layout-detail .summary_detail-text .summary_detail-lead {
    font-weight: 600;
    color: #008D95;
    font-size: 25px;
    margin-bottom: 12px;
    text-decoration: underline;
    text-decoration-color: #F29904;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
    font-family: "Noto Serif JP", serif;
}

.summary_detail .summary-list .summaly-item.management .management_layout .management_layout-detail .summary_detail-text .summary_detail-caption {
    line-height: 1.8;
    font-size: 18px;
}

.summary_detail .summary-list .summaly-item.management .management_layout .management_layout-detail .summary_detail-image {
    width: 34%;
    display: flex;
    align-items: flex-end;
}

.management_layout ul {
    width: 80%;
}

.management_layout ul li {
    margin-bottom: 24px;
}
.management_layout ul li a {
    display: inline-block;
}

.management_layout ul li:last-of-type {
    margin-bottom: 0;
}

.management_list-title {
    font-size: 22px;
    font-weight: 500;
    color: #008D95;
    margin-bottom: 8px;
    font-family: "Noto Serif JP", serif;
    display: flex;
    align-items: center;
}
.management_list-title .dot {
    font-weight: bold;
    font-size: 26px;
}

.management_list-title .link {
    text-decoration: underline;
}


.management_list-text {
    font-size: 18px;
    line-height: 1.8;
    margin-left: 24px;
}

@media screen and (max-width: 1024px) {
    .summary_detail .summary-list .summaly-item.management .icon {
        width: 100%;
        margin-right: 0;
        margin-bottom: 12px;
        padding: 8px 0 8px 12px;
        align-items: flex-start;
    }
    
    .summary_detail .summary-list .summaly-item.management .icon span {
        display: flex;
        align-items: center;
    }
    
    .summary_detail .summary-list .summaly-item.management .icon img {
        width: 50px;
        margin-bottom: 0;
        margin-right: 24px;
    }
    
    .summary_detail .summary-list .summaly-item.management .icon p {
        letter-spacing: 5px;
        font-size: 18px;
    }
    
    .summary_detail .summary-list .summaly-item.management .management_layout {
        width: 100%;
        padding: 0 15px;
    }
    
    .summary_detail .summary-list .summaly-item.management .management_layout .management_layout-detail {
        display: flex;
        margin-bottom: 32px;
        flex-direction: column;
    }

    .summary_detail .summary-list .summaly-item.management .management_layout .management_layout-detail .summary_detail-text {
        width: 100%;
        margin-right: 0;
        margin-bottom: 12px;
        font-size: 14px;
    }
    
    .summary_detail .summary-list .summaly-item.management .management_layout .management_layout-detail .summary_detail-text .summary_detail-lead {
        font-size: 20px;
    }

    
    .summary_detail .summary-list .summaly-item.management .management_layout .management_layout-detail .summary_detail-image {
        width: 100%;
    }
    
    .summary_detail .summary-list .summaly-item.management .management_layout .management_layout-detail .summary_detail-image:after {
        display: none;
    }
    
    .management_layout ul {
        width: 100%;
        margin-bottom: 12px;
    }
    .management_layout ul li {
        font-size: 14px;
    }
    .management_list-title {
        font-size: 18px;
        margin-bottom: 6px;
    }
}

/*-----------------------
コンタクト
-----------------------*/
.contact-wrapper {
    
}

.contact-wrapper .inner {
    width: 100%;
    padding: 120px 8%;
    margin: 0 auto;
}

.contact-wrapper .inner .contact_box {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    border: solid #008D95;
    border-width: 2px 2px 6px 2px;
    padding: 35px;
    text-align: center;
}

.contact-wrapper .inner .contact_box .title {
    color: #008D95;
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.contact-wrapper .inner .contact_box .caption {
    font-size: 19px;
    letter-spacing: 0;
    margin-bottom: 24px;
}

.contact-wrapper .inner .contact_box .menu_contact {
	text-align: center;
	display: flex;
	padding: 0 20px;
    height: 20%;
    justify-content: center;
}

.contact-wrapper .inner .contact_box .menu_contact .btn {
	background-color: #F29904;
	width: 38%;
	height: 50px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 15px;
	margin-bottom: 15px;
	color: #fff;
	font-size: 14px;
	padding-left: 5%;
}

.contact-wrapper .inner .contact_box .menu_contact .mail,
.contact-wrapper .inner .contact_box .menu_contact .tel {
	position: relative;
    font-size: 19px;
}

.contact-wrapper .inner .contact_box .menu_contact .mail::before {
	position: absolute;
    content: "";
	display: inline-block;
	background-image: url("../images/menu_mail.svg");
	background-size: contain;
	vertical-align: middle;
	width: 28px;
	height: 28px;
	left: 40px;
	top: 18%;
	background-repeat: no-repeat;
}

.contact-wrapper .inner .contact_box .menu_contact .tel::before {
	position: absolute;
    content: "";
	display: inline-block;
	background-image: url("../images/menu_tel.svg");
	background-size: contain;
	vertical-align: middle;
	width: 28px;
	height: 28px;
	left: 40px;
	top: 22%;
	background-repeat: no-repeat;
}

@media screen and (max-width: 1024px) {
    .contact-wrapper .inner .contact_box .menu_contact .btn {
        width: 44%;
    }
}

@media screen and (max-width: 767px) {
    .contact-wrapper .inner {
        padding: 20px 15px;
        margin: 0 auto;
    }
    
    .contact-wrapper .inner .contact_box {
        padding: 15px;
    }
    
    .contact-wrapper .inner .contact_box .title {
        font-size: 16px;
        margin-bottom: 8px;
        letter-spacing: 3px;
    }
    .contact-wrapper .inner .contact_box .caption {
        font-size: 14px;
        letter-spacing: 0;
        margin-bottom: 24px;
    }
    
    .contact-wrapper .inner .contact_box .menu_contact {
        flex-direction: column;
    }

    .contact-wrapper .inner .contact_box .menu_contact .btn {
        background-color: #F29904;
        width: 100%;
    }
}

/*-------------------------------------------
フッター
-------------------------------------------*/
#footer {
	width: 100%;
    position: absolute;
    background-color: #F4F4F4;
    left: 0;
}

#footer .inner {
    padding: 90px 0 0 0;
}

#footer .flex {
	margin-bottom: 40px;
	display: flex;
	justify-content: space-between;
}

#footer .flex .logo {
	width: 45%;
}

#footer .flex .logo img {
	max-width: 320px;
	margin-bottom: 15px;
}

#footer .flex .logo div {
	display: flex;
	margin-bottom: 30px;
}
#footer .flex .logo p {
    font-size: 16px;
}

#footer .flex .logo div .postcode {
	margin-right: 15px;
}

#footer .flex .logo .license {
	line-height: 1.5;
}

#footer .flex .footer_navi {
	width: 55%;
}

#footer .flex .footer_navi .menu_list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

#footer .flex .footer_navi .menu_list li {
	width: 33%;
	margin-bottom: 30px;
	font-size: 16px;
}

#footer .flex .footer_navi .menu_list li a {
	position: relative;
	padding-left: 25px;
	display: inline-block;
	text-decoration: none;
}

#footer .flex .footer_navi .menu_list li a::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #008D95;
	transform: scale(0, 1);
	transform-origin: left;
	transition: 0.2s;
}

#footer .flex .footer_navi .menu_list li a:hover::before {
	transform: scale(1);
}


#footer .flex .footer_navi .menu_list li a span {
	position: absolute;
	left: 0;
	top: 22%;
	width: 10px;
	height: 10px;
	border-top: 2px solid #008D95;
	border-right: 2px solid #008D95;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#footer .flex .footer_navi .menu_contact {
	display: flex;
}

#footer .flex .footer_navi .menu_contact .btn {
	background-color: #008D95;
	width: 50%;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	color: #fff;
	font-size: 18px;
	padding-left: 2%;
}

#footer .flex .footer_navi .menu_contact .mail,
#footer .flex .footer_navi .menu_contact .tel {
	position: relative;
}

#footer .flex .footer_navi .menu_contact .mail {
	margin-right: 15px;
}

#footer .flex .footer_navi .menu_contact .mail::before {
	position: absolute;
    content: "";
	display: inline-block;
	background-image: url("../images/menu_mail.svg");
	background-size: contain;
	vertical-align: middle;
	width: 34px;
	height: 34px;
	left: 70px;
	top: 26%;
	background-repeat: no-repeat;
}

#footer .flex .footer_navi .menu_contact .tel::before {
	position: absolute;
    content: "";
	display: inline-block;
	background-image: url("../images/menu_tel.svg");
	background-size: contain;
	vertical-align: middle;
	width: 34px;
	height: 34px;
	left: 70px;
	top: 26%;
	background-repeat: no-repeat;
}

#footer .map {
    position: relative;
    width: 100%;
    margin-bottom: 58px;
}

#footer .map:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: #008D95;
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: hue;
    pointer-events: none;
}

#footer .sideline {
    position: absolute;
    content: "";
    display: block;
    width: 20px;
    height: 186%;
    background-image: linear-gradient(180deg, rgba(242, 153, 4, 1), rgba(242, 153, 4, 0));
    bottom: 0;
    right: 0;
}

#footer .copyright {
    background-image: linear-gradient(270deg, rgba(0, 128, 145, 1), rgba(26, 183, 188, 1));
}

#footer .copyright .inner {
	height: 40px;
	width: 100%;
    margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
    padding: 0 16px 0 32px;
}

#footer .copyright .policy_link {
    display: flex;
    align-items: center;
    width: 50%;
}

#footer .copyright .policy_link a {
    color: #fff;
    font-size: 14px;
}

#footer .copyright .policy_link a:first-of-type {
    margin-right: 32px;
}

#footer .copyright p {
	color: #fff;
	font-size: 14px;
	text-align: end;
	width: 50%;
	padding-right: 15px;
}

#footer .inner .footer_navi .menu_list li:last-of-type a::after {
	content: "";
	background-image: url("../images/blank_link.png");
	display: inline-block;
	background-size: contain;
	vertical-align: middle;
	width: 17px;/*画像の幅*/
	height: 17px;/*画像の高さ*/
	margin-left: 12px;
}

/* tb */
@media screen and (max-width: 1024px) {
	#footer {
		padding: 30px 0 0 0;
		width: 100%;
		margin-left: 0;
	}
    
    #footer .inner {
        padding: 50px 4% 0 4%;
    }

	#footer .flex {
		flex-direction: column-reverse;
		width: 100%;
		padding: 0 15px;
		margin-bottom: 40px;
	}
	
	#footer .flex .logo {
		width: 100%;
	}

	#footer .flex .logo img {
		max-width: 240px;
		margin-bottom: 15px;
	}
	
	#footer .flex .logo div {
		flex-direction: column;
	}

	#footer .flex .logo div .postcode {
		margin-right: 0;
	}

	#footer .flex .footer_navi {
		width: 100%;
	}
	
	#footer .flex .footer_navi .menu_list {
		flex-direction: column;
	}
	
	#footer .flex .footer_navi .menu_list li {
		width: 100%;
		font-size: 16px;
		margin-bottom: 10px;
	}
	
	#footer .flex .footer_navi .menu_contact {
		flex-direction: column;
		margin-bottom: 30px;
	}

	
	#footer .flex .footer_navi .menu_contact .btn {
		background-color: #F29904;
		width: 100%;
		margin-bottom: 20px;
	}
	
	#footer .map:after {
		content: inherit;
	}
    
    #footer .sideline {
        width: 10px;
    }

}

/* sp */
@media screen and (max-width: 767px) {
    #footer {
        width: 100%;
        background-color: #F4F4F4;
    }

    #footer .inner {
        padding: 0;
    }
    #footer .inner .flex {
        padding: 0 15px;
    }
    
    #footer .flex .footer_navi .menu_list {
        position: relative;
        overflow-x: clip;
    }
    
    #footer .flex .footer_navi .menu_list::before {
        content: "";
        position: absolute;
        display: inline-block;
        background-image: url("../images/character/animal_03.png");
        background-size: contain;
        vertical-align: middle;
        width: 140px;
        height: 140px;
        right: 0;
        bottom: 0;
        background-repeat: no-repeat;
        z-index: 1;
        /*transform:rotate(15deg);*/
    }
    
    #footer .flex .footer_navi .menu_list li {
		font-size: 14px;
		margin-bottom: 13px;
    }
    
    #footer .flex .footer_navi .menu_contact .btn {
        background-color: #008D95;
        font-size: 16px;
        border-bottom: 3px solid #F29904;
        padding-left: 15%;
        height: 50px;
    }
    
    #footer .flex .footer_navi .menu_contact .mail::before {
        width: 26px;
        height: 26px;
        left: 90px;
        top: 26%;
    }

    #footer .flex .footer_navi .menu_contact .tel::before {
        width: 26px;
        height: 26px;
        left: 90px;
        top: 26%;
    }
    
	#footer .flex .logo img {
		max-width: 80%;
	}

	#footer .flex .logo div .postcode,
	#footer .flex .logo div .address{
		font-size: 14px;
	}

	#footer .flex .logo .license {
		font-size: 12px;
	}
    
    #footer .map {
        position: relative;
        width: 100%;
        margin-bottom: 0;
    }
    
    #footer .copyright .inner {
        margin-top: -4px;
        height: auto;
        padding: 8px 12px;
        flex-direction: column;
    }
    
    #footer .copyright .policy_link {
        width: 100%;
        margin-bottom: 6px;
    }

    #footer .copyright .policy_link a {
        color: #fff;
        font-size: 12px;
    }

    #footer .copyright .policy_link a:first-of-type {
        margin-right: 16px;
    }

    #footer .copyright p {
        font-size: 10px;
        text-align: end;
        width: 100%;
        padding-right: 0;
    }
    
    #footer .sideline {
        display: none;
    }
}

/*---トップに戻るボタン---*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#008D95;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	/*font-size:0.6rem;*/
	transition:all 0.3s;
	opacity:0.5;
	/*border: 2px solid #fff;*/
}

#page-top a:hover{
	background: #F29904;
	opacity: 1
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 2;
	/*はじめは非表示*/
	opacity: 0;
	transform: translateX(100px);
}
/*　左の動き　*/

#page-top.LeftMove{
	animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
	from {
	opacity: 0;
	transform: translateX(100px);
	}
	to {
	opacity: 1;
	transform: translateX(0);
	}
}

/*　右の動き　*/

#page-top.RightMove{
	animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
	from {
	opacity: 1;
	transform: translateX(0);
	}
	to {
	opacity: 1;
	transform: translateX(100px);
	}
}


/*--------------------------------
下層ページ共通
-------------------------------*/
.sub-page {
    margin-top: 70px;
}

.page-title {
    width: 100%;
    position: relative;
}

.page-title::before {
    position: absolute;
    content: "";
    display: block;
    width: 90%;
    height: 15px;
    background-image: linear-gradient(270deg, rgba(242, 153, 4, 1), rgba(242, 153, 4, 0));
    top: 0;
    right: 0;
}
.page-title::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 40px;
    background-image: linear-gradient(90deg, rgba(242, 153, 4, 1), rgba(242, 153, 4, 0));
    bottom: -20px;
    right: 0;
}

.page-title h2 {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    font-size: 36px;
    color: #fff;
    letter-spacing: 4px;
    font-family: "Noto Serif JP", serif;
    font-weight: 500
}

@media screen and (max-width: 1024px) {
    .page-title::before {
        width: 90%;
        height: 10px;
    }
    .page-title::after {
        height: 24px;
        bottom: -12px;
    }
    .page-title h2 {
        font-size: 22px;
    }
}

@media screen and (max-width: 767px) {
    .page-title::before {
        width: 90%;
        height: 6px;
    }
    .page-title::after {
        height: 12px;
        bottom: -6px;
    }
    .page-title h2 {
        top: 30%;
        left: 4%;
        font-size: 14px;
        letter-spacing: 1px;
    }
}
