@charset "utf-8";
/*
theme Name: yanai_sc
Description: やない社会保険労務士事務所のテーマです
version： 1.0
*/

/*----------------------------------------
	all
----------------------------------------*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ ゴシック', sans-serif;
    font-size: 62.5%;
    color: #333;
    -webkit-text-size-adjust: 100%;
    line-height: 1;
    font-weight: 400;
    scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 1.8rem;
}

a {
    text-decoration: none;
    color: #333;
}

img {
    vertical-align: bottom;
    height: auto;
}

ul {
    list-style-type: none;
}

#container {
    overflow: hidden;
}

.bold {
    font-weight: bold;
}


@media screen and (max-width:768px) {
    body {
        font-size: 1.6rem;
    }
}

/*----------------------------------------
	common
----------------------------------------*/

.c-inner {
    width: 100%;
    padding: 0 10%;
}

.c-text {
    font-size: 1.8rem;
    line-height: 1.75;
}

.c-button {
    text-align: center;
    display: block;
    width: 300px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    transition: all 0.3s;
    position: relative;
    transition: all 0.4s;
    border: 1px solid #707070;
}

.c-button:after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 12px;
    background-image: url(images/button_arrow.svg);
    background-repeat: no-repeat;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: all 0.4s;
}

.color {
    color: #104584;
}

.op {
    transition: .3s;
}

.op:hover {
    opacity: 0.7;
}

.lookforward-close-btn {
    display: none;
}

@media screen and (max-width:1500px) {
    .c-inner {
        width: 100%;
        padding: 0 5.5%;
    }
}

@media screen and (max-width:1300px) {
    .c-inner {
        width: 100%;
        padding: 0 4.5%;
    }
}

@media screen and (max-width:820px) {
    .c-text {
        font-size: 1.4rem;
    }

    .c-button {
        width: 200px;
        height: 45px;
        font-size: 1.4rem;
    }

    .c-inner {
        width: 100%;
        padding: 0 3.5%;
    }
}

@media screen and (min-width:821px) {
    .c-button:hover {
        border-color: transparent;
        color: #fff;
        /*背景の色と形状*/
        background: linear-gradient(270deg, #49C3B9 0%, #5FCED8 50%, #104584 100%);
        background-size: 200% auto;
        background-position: right center;
        /*ボックスの影*/
        box-shadow: 0 5px 10px rgb(15, 69, 132, 0.3);
    }
}

/*----------------------------------------
	animation
----------------------------------------*/

.appear {
    transform-origin: center top;
    animation: show 1s both;
}

span.appear {
    display: inline-block;
}

.d1 {
    animation-delay: 0.5s;
}

.d2 {
    animation-delay: 1s;
}

.d3 {
    animation-delay: 1.5s;
}

.d4 {
    animation-delay: 2s;
}

.d5 {
    animation-delay: 2.5s;
}

.d6 {
    animation-delay: 3s;
}

.d8 {
    animation-delay: 3.5s;
}

.d10 {
    animation-delay: 10s;
}

.d12 {
    animation-delay: 12s;
}

@keyframes show {
    0% {
        transform: translate(0, 2em);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
}

.scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

.timing02 {
    transition-delay: .2s;
}

.timing03 {
    transition-delay: .4s;
}

.timing04 {
    transition-delay: .6s;
}

.timing05 {
    transition-delay: .8s;
}

/*----------------------------------------
	l-header
----------------------------------------*/

/*PCメニュー*/

.l-header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    transition: all 0.4s ease;
}

.l-header__inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 999;
}

.l-header__gnavLists {
    display: flex;
    align-items: center;
}

.l-header__gnavList:not(:last-child) {
    margin: 0px 35px 0 0;
}

.logo {
    width: 310px;
    height: 310px;
    position: absolute;
    background-color: #fff;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo .sp {
    display: none;
}

.l-header__gnavList a {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
    position: relative;
}

.l-header__gnavList a::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: left top;
}

.l-header__gnavList a:hover::after {
    transform: scale(1, 1);
}


.l-header__gnavList:not(:last-child) {
    margin: 0px 58px 0 0;
}

.l-header__gnavcontact {
    width: 80px;
    height: 80px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.l-header__gnavcontact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.l-header__gnav {
    margin: 0 80px 0 0;
}

/*SPメニュー*/
#g-nav.panelactive {
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100vh;
}

.circle-bg {
    position: fixed;
    z-index: 99;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #104584;
    transform: scale(0);
    right: -50px;
    top: -50px;
    transition: all .6s;
}

.circle-bg.circleactive {
    transform: scale(50);
}

#g-nav-list {
    display: none;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list {
    display: block;
}

#g-nav ul {
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    opacity: 0;
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
    width: 85%;
    opacity: 1;
}

#g-nav.panelactive ul li {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

#g-nav.panelactive ul li a {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

#g-nav.panelactive ul li:nth-of-type(1) a,
#g-nav.panelactive ul li:nth-of-type(2) a {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes gnaviAnime {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#g-nav li {
    text-align: center;
    list-style: none;
}

#g-nav li a {
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.openbtn1 {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    cursor: pointer;
    width: 80px;
    height: 80px;
    background-color: #104584;
}

.openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 28px;
    height: 1px;
    background-color: #fff;
    width: 25px;
}

.openbtn1 span:nth-of-type(1) {
    top: 37px;
}

.openbtn1 span:nth-of-type(2) {
    top: 44px;
}

.openbtn1.active {
    background-color: #fff;
}

.openbtn1.active span {
    background-color: #104584;
}

.openbtn1.active span:nth-of-type(1) {
    top: 31.5px;
    left: 31.5px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
    top: 31.5px;
    left: 31.5px;
    transform: translateY(6px) rotate(45deg);
    width: 31.25%;
}

.g-nav-list li {
    width: 48%;
}

#g-nav.panelactive ul li a:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #ffffff;
    border-right: 0;
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width:1400px) {
    .logo {
        width: 250px;
        height: 250px;
    }

    .logo a {
        width: 150px;
    }

    .logo a img {
        width: 100%;
    }

    .l-header__gnavList:not(:last-child) {
        margin: 0px 40px 0 0;
    }

    .l-header__gnavList a {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 1100px) {
    .l-header__gnavList {
        display: none;
    }

    .logo {
        width: 190px;
        height: 190px;
    }

    .logo a {
        width: 125px;
    }
}


@media screen and (max-width: 1024px) {
    .logo {
        width: 150px;
        height: 150px;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 9999;
    }

    .logo a {
        width: 100px;
    }

    .openbtn1 {
        width: 70px;
        height: 70px;
    }

    .openbtn1 span {
        width: 30px;
        left: 20px;
    }

    .openbtn1 span:nth-of-type(1) {
        top: 32px;
    }

    .openbtn1 span:nth-of-type(2) {
        top: 37px;
    }

    .l-header__gnav {
        margin: 0 70px 0 0;
    }

    .l-header__gnavcontact {
        width: 70px;
        height: 70px;
        position: fixed;
        top: 0;
        right: 70px;
    }

    .openbtn1.active span:nth-of-type(1) {
        top: 24.5px;
        left: 24.5px;
        width: 42.8%;
    }

    .openbtn1.active span:nth-of-type(2) {
        top: 24.5px;
        left: 24.5px;
        width: 42.8%;
    }
}

@media screen and (max-width: 768px) {
    #g-nav.panelactive ul {
        width: 90%;
    }

    .g-nav-list li {
        width: 100%;
    }

    #g-nav li a {
        font-size: 1.7rem;
    }
}

@media screen and (max-width: 590px) {
    .logo {
        width: 125px;
        height: 55px;
    }

    .logo a {
        width: 85px;
    }

    .logo .sp {
        display: block;
    }

    .logo .pc {
        display: none;
    }

    .l-header__gnavcontact {
        width: 55px;
        height: 55px;
        right: 55px;
    }

    .openbtn1 {
        width: 55px;
        height: 55px;
    }

    .openbtn1 span:nth-of-type(1) {
        top: 24px;
    }

    .openbtn1 span:nth-of-type(2) {
        top: 31px;
    }

    .openbtn1 span {
        width: 25px;
        left: 15px;
    }

    .openbtn1.active span:nth-of-type(1) {
        top: 18.5px;
        left: 18.5px;
    }

    .openbtn1.active span:nth-of-type(2) {
        top: 18.5px;
        left: 18.5px;
    }
}

#g-nav li.gnav-Contact {
    width: 1100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
}

#g-nav.panelactive ul li.gnav-Contact a {
    margin: 100px auto 0;
    border: 1px solid #fff;
    background: transparent;
}

#g-nav.panelactive ul li.gnav-Contact a:after {
    display: none;
}

#g-nav .gnav-Contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #54C8C8;
    font-size: 3.4rem;
    letter-spacing: 0.15em;
    margin: auto;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
}

#g-nav .gnav-Contact a:before {
    content: "";
    display: inline-block;
    background-image: url(images/contact_bottom_icon.svg);
    width: 34px;
    height: 25px;
    margin: 0 28px 0 0;
}

@media screen and (max-width: 1600px) {
    #g-nav .gnav-Contact {
        width: 88%;
        height: 140px;
    }
}

@media screen and (max-width: 820px) {
    #g-nav .gnav-Contact {
        padding: 0 0 80px;
        height: 75px;
    }

    #g-nav .gnav-Contact a {
        font-size: 2.2rem;
    }

    #g-nav.panelactive ul li a {
        padding: 18px 0;
    }

    #g-nav.panelactive ul li.gnav-Contact a {
        padding: 30px 0;
    }

    #g-nav.panelactive ul li.gnav-Contact a {
        margin: 50px 0 0;
    }

    #g-nav.panelactive ul li:nth-of-type(2) a {
        border-top: none;
    }
}

@media screen and (max-width: 590px) {
    #g-nav .gnav-Contact a {
        font-size: 1.8rem;
    }

    #g-nav .gnav-Contact {
        width: 100%;
        height: 60px;
    }

    #g-nav .gnav-Contact a:before {
        width: 20px;
        height: 15px;
        background-size: 100%;
        margin: 0 15px 0 0;
    }

    #g-nav li a {
        font-size: 1.6rem;
    }

    #g-nav.panelactive ul li.gnav-Contact a {
        margin: 30px 0 0;
    }
}

/*----------------------------------------
	footer
----------------------------------------*/

.l-footer {
    padding: 100px 0;
    background-color: #333333;
    position: relative;
    z-index: 11;
}

.l-footer__inner {
    margin: 0 auto;
    padding: 0 0 102px;
    display: flex;
    justify-content: space-between;
}

.l-footer__infoWrap {
    display: flex;
    align-items: center;
}

.l-footer__info {
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
    margin: 0 30px 0 0;
}

.l-footer__tel {
    font-size: 2rem;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.1em;
}

.l-footer__tel span {
    font-size: 1.2rem;
}

.l-footer__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.l-footer__right {
    display: flex;
    flex-direction: column;
}

.l-footer__copyright {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    text-align: right;
}

.l-footer__logo {
    margin: 0 auto 58px;
    display: block;
}

.l-footer__navList:not(:last-child) {
    margin: 0 53px 0 0;
}

.l-footer__navLists {
    display: flex;
    align-items: center;
    margin: 0 0 75px;
}

.l-footer__navList a {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    letter-spacing: 0.08em;
    font-weight: bold;
    transition: .3s;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
}

@media screen and (max-width:1500px) {
    .l-footer__infoWrap {
        flex-direction: column;
    }

    .l-footer__infoWrap {
        align-items: flex-start;
    }

    .l-footer__info {
        margin: 0 0 10px;
    }
}

@media screen and (max-width:1400px) {
    .l-footer__inner {
        width: 100%;
        padding: 0 3% 100px;
    }

    .l-footer__navList a {
        font-size: 1.2rem;
        padding: 0 10px;
    }

    .l-footer__logo {
        margin: 0 auto 30px;
    }

    .l-footer__navList a {
        font-size: 1.2rem;
    }
}

@media screen and (max-width:1300px) {
    .l-footer__navLists:nth-of-type(1) {
        margin-right: 35px;
    }

    .l-footer__navLists:nth-of-type(2) {
        margin-right: 35px;
    }

    .l-footer__navList a {
        font-size: 1.7rem;
    }

    .l-footer__navList:not(:last-child) {
        margin: 0 20px 0 0;
    }
}

@media screen and (max-width:1200px) {
    .l-footer__navList a {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1024px) {
    .l-footer {
        padding: 70px 0 0;
    }

    .l-footer__navLists:nth-of-type(1) {
        margin-right: 0;
    }

    .l-footer__inner {
        padding: 0px 2% 60px;
    }
}

@media screen and (max-width:820px) {
    .l-footer {
        padding: 55px 0 0;
    }

    .l-footer__inner {
        margin: 0 auto 60px;
    }

    .l-footer__logo {
        width: 190px;
    }

    .l-footer__logo img {
        width: 100%;
    }

    .l-footer__inner {
        flex-direction: column;
    }

    .l-footer__nav {
        width: 100%;
        flex-direction: column;
    }

    .l-footer__navList a {
        width: 100%;
        font-size: 1.4rem;
        border-bottom: 1px solid rgba(112, 112, 112, 0.7);
        padding: 12px 10px;
    }

    .l-footer__copyright {
        padding: 8px 0 9px;
    }

    .l-footer__navLists {
        width: 100%;
        flex-direction: column;
    }

    .l-footer__navList {
        width: 100%;
    }

    .l-footer__navLists:nth-of-type(1) {
        margin-right: 0;
    }

    .l-footer__navLists:nth-of-type(2) {
        margin-right: 0;
    }

    .l-footer__navList:not(:last-child) {
        margin: 0;
    }

    .l-footer__navLists:nth-of-type(1) .l-footer__navList:not(:last-child) {
        margin: 0;
    }

    .l-footer__navChild li:not(:last-child) {
        margin: 0;
    }

    .l-footer__navChild li:not(:last-child) a {
        border-bottom: none;
    }

    .l-footer__navChild ul {
        margin-top: 0;
        margin-right: 0;
    }

    .l-footer__navChild ul {
        margin-left: 0;
    }

    .l-footer__navTitle h2 {
        font-size: 1.7rem;
        margin: 0 0 8px;
    }

    .l-footer__copyright {
        font-size: 1rem;
    }

    .l-footer__contact {
        font-size: 2rem;
    }

    .l-footer__left {
        width: 100%;
        margin: 0 0 30px;
    }

    .l-footer__inner {
        padding: 0 4.5%;
    }

    .l-footer__logo {
        width: 180px;
    }

    .l-footer__info {
        font-size: 1.2rem;
    }

    .l-footer__info:nth-of-type(1) {
        margin: 0 0 10px;
    }

    .l-footer__right {
        flex-direction: column;
        width: 75%;
    }

    .l-footer__wrap {
        flex-direction: column;
    }

    .l-footer__infoWrap {
        flex-direction: column;
    }

    .l-footer__copyright {
        text-align: center;
    }

    .l-footer__navLists {
        margin: 0 0 50px;
    }

    .l-footer__infoWrap {
        align-items: center;
    }

    .l-footer__info {
        margin: 0 0 20px;
    }
}

@media screen and (max-width:590px) {
    .l-footer__logo {
        width: 140px;
        margin: 0 auto 40px;
    }

    .l-footer__right {
        width: 100%;
    }

    .l-footer__copyright {
        font-size: 2.7vw;
    }
}


/*----------------------------------------
	topCommon
----------------------------------------*/

.c-top__titleWrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 70px;
}

.c-top__titleWrap:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 3px;
    background-color: #49C3B9;
    margin: 0 22px 0 0;
}

.c-top__titleJp {
    font-size: 2.2rem;
    letter-spacing: 0.08em;
}

.c-top__titleEn {
    font-size: 2.2rem;
    letter-spacing: 0.15em;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
}

.c-top__titleWrap span {
    padding: 0 20px;
}

@media screen and (max-width:820px) {
    .c-top__titleJp {
        font-size: 1.6rem;
    }

    .c-top__titleEn {
        font-size: 1.8rem;
    }

    .c-top__titleWrap {
        margin: 0 0 30px;
    }

    .c-top__titleWrap span {
        padding: 0 10px;
    }

    .c-top__titleWrap:before {
        width: 18px;
        height: 2px;
        margin: 0 15px 0 0;
    }
}

@media screen and (max-width:590px) {
    .c-top__titleWrap {
        margin: 0 0 25px;
    }

    .c-top__titleJp {
        font-size: 1.4rem;
    }

    .c-top__titleEn {
        font-size: 1.6rem;
    }

    .c-top__titleWrap span {
        padding: 0 5px;
    }
}

/*----------------------------------------
	topMv
----------------------------------------*/

.p-topMv {
    width: 100%;
    height: 100vh;
    background-image: url(images/mv.jpg);
    background-size: cover;
    position: relative;
    background-position: right;
}

.p-topMv__copy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.p-topMv__copy h2 {
    font-size: 3.3vw;
    letter-spacing: 0.13em;
    margin: 0 0 55px;
    line-height: 1.719;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
    color: #fff;
}

.p-topMv__copyEn {
    font-size: 2rem;
    letter-spacing: 0.26em;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
}

.p-topMv__news {
    width: 1100px;
    height: 80px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: transparent linear-gradient(104deg, #104584 0%, #5FCED8 100%) 0% 0% no-repeat padding-box;
    display: flex;
    align-items: center;
    padding: 0 0 0 70px;
}

.p-topMv__news h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0 120px 0 0;
}

.p-topMv__newsAll {
    color: #fff;
}

.p-topMv__news a {
    display: flex;
    align-items: center;
}

.p-topMv__newsTime {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    margin: 0 25px 0 0;
}

.p-topMv__newsTitle {
    font-size: 1.7rem;
    letter-spacing: 0.1em;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
}

.p-topMv__bottom {
    position: relative;
}

.p-topMv__bottom:before {
    content: "";
    width: 57.2%;
    height: 100%;
    background: transparent linear-gradient(185deg, #49C3B9 0%, #5FCED8 57%, #104584 100%) 0% 0% no-repeat padding-box;
    opacity: 0.09;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

@media screen and (max-width:1300px) {
    .p-topMv__news {
        width: 80%;
    }

    .p-topMv__news h2 {
        margin: 0 60px 0 0;
    }
}

@media screen and (max-width:820px) {
    .p-topMv {
        background-image: url(images/tb_mv.jpg);
    }

    .p-topMv__copy h2 {
        font-size: 6.3vw;
        margin: 0 0 35px;
    }

    .p-topMv__copyEn {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .p-topMv__copyEn br {
        display: none;
    }

    .p-topMv__news {
        padding: 0 0 0 30px;
    }

    .p-topMv__news h2 {
        margin: 0 30px 0 0;
    }
}

@media screen and (max-width:590px) {
    .p-topMv {
        background-position: 95%;
    }

    .p-topMv__copy {
        text-align: center;
        width: 100%;
    }

    .p-topMv__copy h2 {
        font-size: 6.2vw;
        margin: 0 0 20px;
    }

    .p-topMv__copyEn {
        text-align: center;
        line-height: 1.35;
        font-size: 1.3rem;
    }

    .p-topMv__news {
        width: 100%;
        height: auto;
        padding: 15px 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .p-topMv__news h2 {
        width: 100%;
        margin: 0 0 10px;
    }

    .p-topMv__news a {
        flex-direction: row;
    }

    .p-topMv__newsTime {
        width: auto;
        margin: 0 10px 0 0;
    }

    .p-topMv__newsTitle {
        font-size: 1.5rem;
    }

    .p-topMv__bottom:before {
        width: 42%;
    }

    .p-topMv__copyEn br {
        display: block;
    }
}

/*----------------------------------------
	topConcept
----------------------------------------*/
.p-topConcept {
    padding: 170px 0 0;
}

.p-topConcept__wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.p-topConcept__left {
    width: 50%;
}

.p-topConcept__left h3 {
    font-size: 2.135vw;
    letter-spacing: 0.1em;
    line-height: 2.143;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
    margin: 0 0 90px;
}

.p-topConcept__right {
    width: 42.3%;
}

.p-topConcept__right .c-text {
    line-height: 2.5;
}

@media screen and (max-width:1300px) {

    .p-topConcept__left h3 {
        font-size: 2.5vw;
    }
}

@media screen and (max-width:820px) {
    .p-topConcept {
        padding: 80px 0 0;
    }

    .p-topConcept__wrap {
        flex-direction: column;
    }

    .p-topConcept__left {
        width: 100%;
    }

    .p-topConcept__left h3 {
        font-size: 3.2rem;
        margin: 0 0 30px;
    }

    .p-topConcept__left h3 br {
        display: none;
    }

    .p-topConcept__right {
        width: 100%;
    }

    .p-topConcept__right .c-text {
        margin: 0 0 30px;
    }
}

@media screen and (max-width:590px) {
    .p-topConcept__left h3 {
        font-size: 2.2rem;
        line-height: 1.8;
    }
}

/*----------------------------------------
	topReason
----------------------------------------*/

.p-topReason {
    margin: 0 0 180px;
    padding: 180px 0 0;
}

.p-topReason__listsWrap {
    padding: 180px 12.5% 170px 0;
    background-color: #fff;
}

.p-topReason__lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.p-topReason__list {
    width: 45.4%;
}

.p-topReason__list:nth-child(n+3) {
    margin: 120px 0 0 0;
}

.p-topReason__list h3 {
    font-size: 3rem;
    letter-spacing: 0.1em;
    margin: 0 0 55px;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
    line-height: 1.933;
}

.p-topReason__listNumber {
    font-size: 2.2rem;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #104584;
    margin: -32px 0 32px;
    text-align: center;
    position: relative;
}

.p-topReason__listNumber span {
    margin: 0 15px 0 0;
}

.p-topReason__listNumber:before {
    content: "";
    display: block;
    width: 2px;
    height: 63px;
    background-color: #49C3B9;
    margin: 0 auto 36px;
}

.p-topReason__list h3 {
    text-align: center;
}

.p-topReason__list .c-text {
    text-align: center;
}

@media screen and (max-width:820px) {
    .p-topReason {
        margin: 0 0 80px;
        padding: 70px 0 0;
    }

    .p-topReason__listsWrap {
        padding: 70px 5.5% 60px 0;
    }

    .p-topReason__listsWrap {
        padding: 70px 8.5% 60px 0;
    }

    .p-topReason__list h3 {
        font-size: 2.8rem;
        line-height: 1.7;
        margin: 0 0 20px;
    }

    .p-topReason__listNumber {
        font-size: 1.7rem;
        margin: -20px 0 14px;
    }
}

@media screen and (max-width:590px) {
    .p-topReason__list {
        width: 100%;
    }

    .p-topReason__list h3 {
        font-size: 2rem;
        margin: 0 0 15px;
    }

    .p-topReason__list h3 br {
        display: none;
    }

    .p-topReason__list:nth-child(n+3) {
        margin: 0;
    }

    .p-topReason__list:not(:last-child) {
        margin: 0 0 60px;
    }

    .p-topReason__listNumber span {
        margin: 0 7px 0 0;
    }

    .p-topReason__listNumber {
        font-size: 1.4rem;
        margin: -20px 0 14px;
    }

    .p-topReason__listNumber:before {
        margin: 0 auto 12px;
        height: 40px;
    }
}

/*----------------------------------------
	topService
----------------------------------------*/

.p-topService {
    margin: 0 0 174px;
}

/* slider */
.p-topService__slider {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.slick-list {
    width: 100%;
    box-sizing: border-box;
    margin: 0 0 90px !important;
}

/* slide (ここはお好みで) */
.slick-slide {
    margin: 0 20px;
    overflow: hidden;
}

/* dots */
.p-topService__slider .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    bottom: auto;
    width: 250px;
    height: 56px;
    margin: 0 0 0 10%;
    padding: 0 20px;
    border-radius: 28px;
    background: rgba(73, 195, 185, 0.25);
}

/* 一時停止ボタン */
.slick_pause {
    display: block;
    width: 56px;
    height: 56px;
    margin-left: 25px;
    border-radius: 50%;
    background: url(images/pause.png) 50% 50% / 20px auto no-repeat #D1F0ED;
    cursor: pointer;
    border: none;
    outline: none;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

.slick_pause.paused {
    background-image: url(images/start.png);
}

.p-topService__slider.paused .slick-dots li.slick-active button::before {
    animation-play-state: paused;
    /*一時停止中はanimationを一時停止*/
}

.p-topService__list {
    width: 1374px;
    height: 600px;
    position: relative;
}

.p-topService__listImg {
    width: 1374px;
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
}

.p-topService__list01 .p-topService__listImg {
    background-image: url(images/top_service01.jpg);
}

.p-topService__list02 .p-topService__listImg {
    background-image: url(images/top_service02.jpg);
}

.p-topService__list03 .p-topService__listImg {
    background-image: url(images/top_service03.jpg);
}

.p-topService__list04 .p-topService__listImg {
    background-image: url(images/top_service04.jpg);
}

.p-topService__list05 .p-topService__listImg {
    background-image: url(images/top_service05.jpg);
}

.p-topService__list06 .p-topService__listImg {
    background-image: url(images/top_service06.jpg);
}

.p-topService__listText {
    width: 627px;
    padding: 72px 68px;
    background-color: rgba(255, 255, 255, 0.77);
    position: absolute;
    right: 0;
    bottom: 0;
}

.p-topService__listText h3 {
    font-size: 3.2rem;
    letter-spacing: 0.1em;
    margin: 0 0 40px;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
    line-height: 1.3;
}

.p-topService .c-button {
    margin-left: auto;
    margin-top: -70px;
}

@media screen and (max-width:1500px) {
    .p-topService__slider .slick-dots {
        margin: 0 0 0 5.5%;
    }
}

@media screen and (max-width:1300px) {
    .p-topService__slider .slick-dots {
        margin: 0 0 0 4.5%;
    }
}

@media screen and (max-width:820px) {
    .p-topService {
        margin: 0 0 80px;
    }

    .p-topService__listText h3 {
        font-size: 2.5rem;
    }

    .p-topService__listText {
        padding: 50px 40px;
        background-color: rgba(255, 255, 255, 0.5);
        width: 100%;
        height: 100%;
    }

    .p-topService__slider .slick-dots {
        margin: 0 0 0 3.5%;
    }

    .p-topService__listImg {
        width: 590px;
        height: 280px;
    }

    .p-topService__list {
        width: 590px;
    }

    .slick-list {
        margin: 0 0 40px !important;
    }

    .p-topService__listText h3 {
        margin: 0 0 40px !important;
    }

    .p-topService .c-button {
        margin-top: -45px;
    }
}

@media screen and (max-width:590px) {
    .p-topService__list {
        width: 300px;
    }

    .p-topService__listImg {
        width: 300px;
        height: 180px;
    }

    .p-topService__listText {
        width: 100%;
        position: unset;
        padding: 40px 30px;
        height: 290px;
    }

    .p-topService__listText h3 {
        font-size: 2rem;
        margin: 0 0 15px;
    }

    .slick-slide {
        margin: 0 10px;
    }

    .slick-dots li {
        margin: 0 5px !important;
    }

    .p-topService__slider .slick-dots {
        width: 200px;
        height: 45px;
    }

    .slick_pause {
        width: 45px;
        height: 45px;
        background: url(images/pause.png) 50% 50% / 15px auto no-repeat #D1F0ED;
    }

    .p-topService .c-button {
        margin-top: 30px;
        margin-right: auto;
    }
}

@media screen and (max-width:400px) {
    .p-topService__list {
        width: 280px;
    }

    .p-topService__listImg {
        width: 280px;
        height: 180px;
    }
}

/*----------------------------------------
	topColumn
----------------------------------------*/

.p-topColumn {
    display: flex;
    margin: 0 0 170px;
    position: relative;
}

.p-topColumn__titleWrap {
    margin: 0 313px 0 0;
}

.p-topColumn__titleWrap .c-top__titleWrap {
    margin: 0 0 95px;
}

.p-topColumn__article {
    padding: 40px 0;
}

.p-topColumn__article:last-child {
    padding-bottom: 0;
}

.p-topColumn__article:first-child {
    padding-top: 0;
}

.p-topColumn__title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.3rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.p-topColumn__info {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    margin: 0 0 15px;
}

.p-topColumn__category {
    margin-right: 15px;
    padding: 6px 18px;
    background-color: #49C3B9;
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
}

.p-topColumn__time {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.p-topColumn__article a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.p-topColumn__wrap {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: #EEE9E4;
    padding: 145px 30px 145px 100px;
}

.p-topColumn__articleWrap {
    width: 56.2%;
}

.p-topColumn__wrap .c-button.tb {
    display: none;
}

@media screen and (max-width:1800px) {
    .p-topColumn__titleWrap {
        margin: 0 200px 0 0;
    }
}

@media screen and (max-width:1500px) {
    .p-topColumn__titleWrap {
        margin: 0 150px 0 0;
    }
}

@media screen and (max-width:820px) {
    .p-topColumn {
        margin: 0 0 70px;
    }

    .p-topColumn__wrap {
        flex-direction: column;
        padding: 40px 3.5%;
    }

    .p-topColumn__articleWrap {
        width: 100%;
    }

    .p-topColumn__title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .p-topColumn__category {
        font-size: 1.2rem;
        padding: 5px 3px;
    }

    .p-topColumn__titleWrap .c-top__titleWrap {
        margin: 0 0 40px;
    }

    .p-topColumn__article {
        padding: 15px 0;
    }

    .p-topColumn__wrap .c-button.pc {
        display: none;
    }

    .p-topColumn__wrap .c-button.tb {
        display: flex;
        margin: 30px 0 0;
    }

    .p-topColumn__titleWrap {
        margin: 0;
    }
}

/*----------------------------------------
	topAccess
----------------------------------------*/

.p-topAccess {
    margin: 0 0 160px;
}

.p-topAccess__wrap {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 35.81%;
}

.p-topAccess__wrap iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
}

@media screen and (max-width:820px) {
    .p-topAccess {
        margin: 0 0 70px;
    }

    .p-topAccess__wrap {
        height: 400px;
        padding-top: auto;
    }
}

@media screen and (max-width:590px) {
    .p-topAccess__wrap {
        height: 300px;
        padding-top: auto;
    }
}

/*----------------------------------------
	topCompany
----------------------------------------*/

.p-topCompany {
    margin: 0 0 180px;
}

.p-topCompany__en {
    font-size: 2.7rem;
    letter-spacing: 0.2em;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    margin: 0 0 33px;
}

.p-topCompany__logo {
    text-align: center;
}

.p-topCompany__enWrap {
    display: block;
    width: 100%;
    height: 550px;
    background-image: url(images/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 64px 0 0;
}

.p-topCompany__lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: -138px 0 0;
}

.p-topCompany__list {
    width: 33.333333%;
    background-color: #EEE9E4;
}

.p-topCompany__list:not(:last-child) {
    border-right: 1px solid rgba(112, 112, 112, 0.25);
}

.p-topCompany__listText .c-text {
    text-align: center;
    margin: 0 0 60px;
}

.p-topCompany__listText {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 58px 0;
}

.p-topCompany__listText .c-top__titleWrap {
    margin: 0 0 60px;
}

@media screen and (max-width:820px) {
    .p-topCompany {
        margin: 0 0 70px;
    }

    .p-topCompany__logo {
        width: 55%;
        margin: auto;
    }

    .p-topCompany__logo img {
        width: 100%;
    }

    .p-topCompany__en {
        font-size: 2.5vw;
        line-height: 1.2;
    }

    .p-topCompany__en br {
        display: none;
    }

    .p-topCompany__lists {
        flex-direction: column;
        margin: -185px 0 0;
    }

    .p-topCompany__list {
        width: 70%;
        margin: auto;
    }

    .p-topCompany__enWrap {
        height: 450px;
    }

    .p-topCompany__logo {
        width: 40%;
        margin: auto;
    }

    .p-topCompany__list:not(:last-child) {
        margin: 0 auto 50px;
    }

    .p-topCompany__list:not(:last-child) {
        border-right: none;
    }

    .p-topCompany__listText .c-top__titleWrap {
        margin: 0 0 40px;
    }
}

@media screen and (max-width:590px) {
    .p-topCompany__en {
        font-size: 1.5rem;
        line-height: 1.35;
        margin: 0 0 10px;
    }

    .p-topCompany__logo {
        width: 62%;
        margin: auto;
    }

    .p-topCompany__logo img {
        width: 100%;
    }

    .p-topCompany__enWrap {
        height: 300px;
        padding: 40px 0 0;
    }

    .p-topCompany__lists {
        margin: -85px 0 0;
    }

    .p-topCompany__list {
        width: 100%;
    }

    .p-topCompany__listText .c-top__titleWrap {
        margin: 0 0 30px;
    }

    .p-topCompany__listText .c-text {
        margin: 0 0 30px;
    }

    .p-topCompany__listText {
        padding: 40px 3.5%;
    }

    .p-topCompany__en br {
        display: block;
    }

    .p-topCompany__en {
        font-size: 1.5rem;
    }
}

/*----------------------------------------
	bottomContact
----------------------------------------*/

.p-bottomContact {
    padding: 0 0 160px;
}

.p-bottomContact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1200px;
    height: 160px;
    background: transparent linear-gradient(253deg, #49C3B9 0%, #5FCED8 50%, #104584 100%) 0% 0% no-repeat padding-box;
    font-size: 3.8rem;
    letter-spacing: 0.15em;
    margin: auto;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
}

.p-bottomContact a:before {
    content: "";
    display: inline-block;
    background-image: url(images/contact_bottom_icon.svg);
    width: 34px;
    height: 25px;
    margin: 0 28px 0 0;
}

@media screen and (max-width: 1600px) {
    .p-bottomContact a {
        width: 88%;
        height: 140px;
    }
}

@media screen and (max-width: 820px) {
    .p-bottomContact {
        padding: 0 0 80px;
    }

    .p-bottomContact a {
        font-size: 2.2rem;
        height: 75px;
    }
}

@media screen and (max-width: 590px) {
    .p-bottomContact a {
        font-size: 1.8rem;
        width: 100%;
        height: 60px;
    }

    .p-bottomContact a:before {
        width: 20px;
        height: 15px;
        background-size: 100%;
        margin: 0 15px 0 0;
    }
}

/*----------------------------------------
	contact
----------------------------------------*/

.p-contact {
    margin: 0 0 150px;
}

.p-contact__form {
    width: 66.6%;
}

.table_contact {
    background-color: #fff;
    border-radius: 12px;
}

.p-contact__wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.table_contact_wrap {
    border-radius: 12px;
    border: 1px solid rgba(85, 85, 85, 0.5);
    padding: 80px 65px 90px;
}

.table_contact {
    display: block;
    width: 100%;
    margin: auto;
}

.table_contact th {
    color: #333333;
    width: 33.2%;
    padding: 20px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.8rem;
}

.table_contact th .small {
    font-size: 1.2rem;
}

.contact_address_wrap div:first-child {
    margin: 0 0 20px;
}

.table_contact tbody {
    display: block;
}

.table_contact td {
    padding: 20px;
    width: 75.5%;
    vertical-align: middle;
}

.table_contact td input.text {
    width: 100%;
    border: none;
    height: 40px;
    padding: 0 0 0 10px;
    background-color: #fff;
    font-size: 1.6rem;
    border: 1px solid rgba(112, 112, 112, 0.3);
    border-radius: 3px;
}

.table_contact td input.text.zip {
    width: 54%;
}

.table_contact td span {
    margin: 0 20px 0 0;
}

.table_contact td span:last-of-type {
    font-weight: bold;
    margin: 0 0 15px;
}

.table_contact td textarea {
    width: 100%;
    border: none;
    height: 180px;
    padding: 20px 0 0 20px;
    border: 1px solid rgba(112, 112, 112, 0.3);
    background-color: #fff;
    font-size: 1.6rem;
    border-radius: 3px;
}

.table_contact td textarea.text_area_remarks {
    height: 237px;
}

.table_contact tr {
    display: flex;
    border-bottom: 1px solid #DDDDDD;
    width: 100%;
}

.table_contact tr:first-child {
    border-top: 1px solid #DDDDDD;
}

.required {
    display: inline-block;
    background-color: #49C3B9;
    color: #fff;
    margin-left: 20px;
    padding: 3px;
    font-weight: normal;
    letter-spacing: 0.06em;
    font-size: 1.1rem;
    border-radius: 2px;
}

.contact_button {
    width: 360px;
    height: 60px;
    margin: 40px auto 0;
    position: relative;
}

.contact_button input {
    background: none;
    border: none !important;
    background-color: #104584 !important;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.07em;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 33px;
}

.mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0;
}

.table_radio_wrap {
    display: flex;
}

.mwform-radio-field:last-child {
    margin: 0;
}

.agree_check {
    margin-bottom: 60px;
    color: #2B3A3F;
}

.agree_check a {
    color: #5BA560;
}

.mwform-checkbox-field {
    margin: 0 40px 0 0;
}

.agree_check .mwform-checkbox-field {
    margin: 0;
}

.mw_wp_form_confirm {
    margin: 0 0 120px;
}

.mw_wp_form_confirm .required,
.mw_wp_form_confirm .option,
.mw_wp_form_confirm .agree_check,
.mw_wp_form_confirm .table_contact_privacy {
    display: none;
}

.selectbox {
    height: 40px;
    background-color: #EDEDED;
    border: 1px solid #DDDDDD;
    padding: 0 20px;
}

input {
    font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ ゴシック', sans-serif;
}

input::placeholder {
    color: #A0A0A0;
}

input[type="text"] {
    border: none;
}

input[type="text"]:focus {
    border: 1px solid #004DA0;
    outline: 0;
}

input::placeholder {
    color: #CECDCD;
}

.table_radio_wrap {
    display: flex;
    flex-direction: column;
}


.table_radio_wrap span:not(:last-child) {
    margin: 0 0 15px;
}

.p-contact__tel {
    background-color: #404040;
    width: 29.8%;
    height: 225px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #EEE9E4;
    position: relative;
    border-radius: 14px;
}

.p-contact__tel h2 {
    font-size: 2.4rem;
    letter-spacing: 0.03em;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.486;
    color: #000000;
    margin: 0 0 30px;
}

.p-contact__telTitle {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 97px 0 0;
}

.p-contact__telTitle p {
    font-size: 2.5rem;
    letter-spacing: 0.06em;
    font-weight: 800;
    font-weight: 800;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #2AAAA4;
}

.p-contact__telNumber {
    font-size: 4rem;
    letter-spacing: 0.06em;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-contact__telNumber span {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}

.p-contact__telNumber a {
    font-size: 4rem;
    letter-spacing: 0.06em;
    color: #104584;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 18px;
}

.p-contact__telNumber a:before {
    content: "";
    display: inline-block;
    background-image: url(images/contact_tel_icon.svg);
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    margin-right: 9px;
}

.table_contact_privacy {
    color: #104584;
    display: block;
    text-align: center;
    margin: 45px auto 55px;
    padding: 0 0 8px;
    font-weight: bold;
}

.table_contact_privacy span {
    border-bottom: 1px solid #104584;
    padding: 0 0 8px;
}

.table_contact td select {
    width: 230px;
    border: none;
    height: 40px;
    padding: 0 0 0 10px;
    background-color: #fff;
    font-size: 1.6rem;
    border: 1px solid rgba(112, 112, 112, 0.3);
    border-radius: 3px;
}

@media screen and (max-width: 1300px) {
    .p-contact__tel {
        width: 30%;
        height: 210px;
    }
}

@media screen and (max-width: 1000px) {

    .table_contact_wrap {
        width: 100%;
        padding: 50px 40px 80px;
    }

    .page_contact_subtitle {
        width: 100%;
    }

    .table_contact td input.text {
        width: 80%;
    }

    .table_contact th {
        width: 37%;
    }

    .table_contact td {
        width: 63%;
    }

    .table_radio_wrap {
        flex-direction: column;
        line-height: 2;
    }

    .c-table__date_wrap {
        display: flex;
        flex-direction: column;
    }

    .table_contact td span {
        margin: 0 0 5px 0;
    }

    .p-contact__wrap {
        flex-direction: column;
        justify-content: center;
    }

    .p-contact__form {
        width: 100%;
    }

    .p-contact__tel {
        width: 100%;
        margin: 0 0 50px;
    }

    .table_contact_privacy {
        font-size: 1.2rem;
        margin: 25px auto 35px;
    }
}

@media screen and (max-width: 820px) {
    .p-contact {
        margin: 0 0 70px;
    }

    .table_contact tr:nth-of-type(1) td {
        display: flex;
        flex-direction: column;
        line-height: 2;
    }

    .mw_wp_form .bg01 {
        margin: 0 0 40px;
    }

    .table_contact tr {
        flex-direction: column;
        padding: 20px 0;
    }

    .table_contact th {
        width: 100%;
        font-size: 1.6rem;
        justify-content: flex-start;
        margin: 0 0 15px;
        padding: 0;
    }

    .table_contact td {
        width: 100%;
        padding: 0;
    }

    .mw_wp_form .bg01 {
        padding: 40px 0;
    }

    .table_contact td input.text {
        width: 60%;
        height: 35px;
    }

    .table_contact td input.text.addr {
        width: 85%;
    }

    .selectbox {
        height: 35px;
    }

    .contact_time_wrap {
        margin: 0 0 30px;
    }

    .agree_check {
        line-height: 1.75;
        margin-bottom: 30px;
    }

    .contact_time_wrap {
        font-size: 1.4rem;
    }

    .contact_button {
        width: 230px;
        height: 45px;
        margin: 30px auto 0;
    }

    .contact_button::before {
        left: 50px;
    }

    .mw_wp_form_confirm {
        margin: 0 0 80px;
    }

    .table_radio_wrap span:not(:last-child) {
        font-size: 1.4rem;
        margin: 0 0 8px;
    }

    .p-contact__tel {
        width: 100%;
        height: auto;
        border-radius: 5px;
        padding: 30px 10px;
    }

    .p-contact__telNumber a {
        font-size: 3rem;
    }

    .p-contact__telNumber a:before {
        background-size: 100%;
        width: 20px;
        height: 20px;
        margin-right: 5px;
    }

    .p-contact__tel h2 {
        font-size: 1.8rem;
    }

    .p-contact__telNumber span {
        font-size: 1.2rem;
    }

    .p-contact__tel h2 {
        margin: 0 0 20px;
    }

    .contact_button input {
        font-size: 1.4rem;
    }

    .table_contact td select {
        width: 200px;
    }
}

@media screen and (max-width: 590px) {
    .table_contact_wrap {
        padding: 50px 20px 80px;
    }

    .table_contact td input.text {
        width: 100%;
        height: 45px;
        font-size: 1.5rem;
    }

    .table_contact td input.text.addr {
        width: 100%;
    }

    .table_contact td input.text.zip {
        width: 75%;
    }
}

/*----------------------------------------
	page_common
----------------------------------------*/

.p-catch {
    width: 100%;
    height: 500px;
    position: relative;
    margin: 0 0 140px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(images/catch_bg.jpg);
}

.p-catch__textWrap {
    width: 100%;
    text-align: center;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.p-catch__jp {
    font-size: 5.8rem;
    letter-spacing: 0.13em;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
}

.p-catch__jp:after {
    content: "";
    display: block;
    margin: 25px auto 32px;
    width: 102px;
    height: 1px;
    background-color: #fff;
}

.p-catch__en {
    display: block;
    font-size: 2.2rem;
    letter-spacing: 0.26em;
    color: #fff;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
}

.p-page__titleWrap {
    text-align: center;
    margin: 0 0 60px;
}

.p-page__titleJp {
    font-size: 2.3rem;
    letter-spacing: 0.08em;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    margin: 0 0 15px;
}

.p-page__titleEn {
    font-size: 5.8rem;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
    color: #104584;
}

.c-page__intro {
    margin: 0 0 130px;
}

.c-section__block {
    margin: 0 0 160px;
}

@media screen and (max-width: 1400px) {
    .p-catch {
        height: 400px;
    }

    .p-catch__jp {
        font-size: 4.8rem;
    }

    .p-catch__en {
        font-size: 1.8rem;
    }
}


@media screen and (max-width: 1024px) {
    .p-catch {
        height: 350px;
    }

    .p-catch__jp {
        font-size: 4.2rem;
    }

    .p-catch__en {
        font-size: 1.7rem;
    }

    .c-section__block {
        margin: 0 0 130px;
    }
}


@media screen and (max-width: 820px) {
    .p-catch {
        height: 270px;
    }

    .p-catch__jp {
        font-size: 3.6rem;
    }

    .p-catch__en {
        font-size: 1.6rem;
    }

    .p-catch {
        margin: 0 0 70px;
    }

    .c-section__block {
        margin: 0 0 70px;
    }

    .c-page__intro {
        margin: 0 0 60px;
    }
}

@media screen and (max-width: 590px) {
    .p-catch {
        height: 220px;
    }

    .p-catch__jp:after {
        width: 95px;
        margin: 15px auto 20px;
    }

    .p-catch__jp {
        font-size: 2.7rem;
    }

    .p-catch__en {
        font-size: 1.5rem;
    }

    .p-catch {
        margin: 0 0 60px;
    }

    .p-catch__jp:after {
        margin: 15px auto 15px;
    }

    .p-catch__textWrap {
        top: 54%;
    }
}

/*----------------------------------------
	company
----------------------------------------*/

.table01 {
    display: block;
    width: 1000px;
    font-size: 1.8rem;
}

.table01 tbody {
    display: block;
    width: 100%;
}

.table01 tr {
    display: flex;
    justify-content: space-between;
}

.table01 tr:last-child {
    border-bottom: none;
}

.table01 th {
    width: 24.5%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(73, 195, 185, 0.45);
    font-weight: normal;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.12em;
    line-height: 1.4;
    color: #49C3B9;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
}

.table01 td {
    padding: 15px;
    width: 75.5%;
    vertical-align: middle;
    border-bottom: 1px solid #DDDDDD;
    line-height: 1.75;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.p-companyOutline {
    margin: 0 0 160px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.p-companyAccess__wrap {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 35.81%;
}

.p-companyAccess__wrap iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.p-companyAccess .c-text {
    font-size: 2rem;
    letter-spacing: 0.04em;
    margin: 0 0 30px;
}

@media screen and (max-width:1600px) {
    .table01 {
        width: 700px;
    }
}

@media screen and (max-width:1200px) {
    .table01 {
        width: 600px;
    }
}

@media screen and (max-width:1024px) {
    .table01 {
        width: 90%;
    }

    .table01 th,
    .table01 td {
        font-size: 1.6rem;
        width: 100%;
    }

    .table01 th {
        width: 100%;
        font-weight: bold;
        border: none;
    }

    .table01 td {
        width: 100%;
        line-height: 1.25;
    }

    .table01 tr {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .p-companyOutline {
        flex-direction: column;
    }

    .p-companyOutline {
        flex-direction: column;
    }

    .table01 th {
        padding: 0;
    }

    .table01 td {
        padding: 0;
    }
}

@media screen and (max-width:820px) {
    .table01 {
        margin: 0 auto;
    }

    .table01 th,
    .table01 td {
        font-size: 1.4rem;
        width: 100%;
    }

    .p-companyOutline {
        margin: 0 0 70px;
    }

    .table01 th {
        margin: 0 0 5px;
    }

    .table01 td {
        border-bottom: none;
    }

    .table01 tr {
        border-bottom: 1px solid #DDDDDD;
        padding: 10px 0;
    }

    .table01 tr:last-child {
        border-bottom: 1px solid #DDDDDD;
    }

    .p-companyAccess .c-text {
        font-size: 1.6rem;
    }

    .p-companyAccess .c-text {
        margin: 0 0 15px;
    }
}

@media screen and (max-width:590px) {
    .table01 {
        width: 100%;
    }

    .p-companyAccess__wrap {
        padding-top: 90%;
    }
}

/*----------------------------------------
	privacy policy
----------------------------------------*/

.privacy_title {
    font-size: 1.8rem;
    line-height: 1.4;
    padding: 0.5em 0.5em 0.5em 1em;
    background-color: rgba(196, 221, 180, 0.09);
    border-left: 4px solid #104584;
    margin: 0 0 15px;
}

.privacy_title02 {
    font-size: 2.2rem;
    line-height: 1.4;
    padding: 0.5em;
    color: #fff;
    background-color: #104584;
    margin: 0 auto 30px;
    width: 500px;
    text-align: center;
}

.privacy_policy .text {
    margin: 0 0 30px;
}

.privacy_policy_list {
    font-weight: bold;
    color: #104584;
    margin: 0 0 20px;
    line-height: 1.3;
}

.privacy_policy_lists li {
    line-height: 1.75;
}

.privacy_policy_lists li:not(:last-child) {
    margin: 0 0 15px;
}

.privacy_policy_list > ul {
    margin: 10px 0 0;
    color: #000;
    line-height: 1.7;
    font-weight: normal;
}

.privacy_policy_list > ul {
    padding-left: 30px;
}

.privacy_policy_list > ul > li > ul {
    padding-left: 50px;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .privacy_title {
        font-size: 1.6rem;
    }

    .privacy_title02 {
        font-size: 1.8rem;
    }

    .privacy_policy_list {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 590px) {
    .privacy_title02 {
        width: 100%;
        margin: 0 auto 20px;
    }
}

/*----------------------------------------
	404 not found
----------------------------------------*/

.error404 .c-button {
    margin: auto;
}

/*----------------------------------------
	Service
----------------------------------------*/

.page-id-550 .p-catch {
    margin: 0;
}

.p-service {
    padding: 140px 0 0;
    background: transparent linear-gradient(187deg, rgba(73, 195, 185, 0.09) 0%, rgba(95, 206, 216, 0.09) 57%, rgba(16, 69, 132, 0.09) 100%) 0% 0% no-repeat padding-box;
}

.p-service__intro {
    margin: 0 0 180px;
}

.p-service__intro h2 {
    font-size: 4.8rem;
    letter-spacing: 0.08em;
    line-height: 1.667;
    margin: 0 0 80px;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
    text-align: center;
}

.p-service__intro .c-text {
    line-height: 2.778;
}

.p-serviceList__wrap {
    display: flex;
    align-items: center;
    margin: 0 0 70px;
}

.p-serviceList:nth-of-type(odd) .p-serviceList__wrap {
    flex-direction: row-reverse;
}

.p-serviceList:nth-of-type(1) .p-serviceList__wrap {
    flex-direction: column;
}

.p-serviceList__text {
    width: 700px;
    background-color: #fff;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 91px;
    position: relative;
}

.p-serviceList__text h2 {
    font-size: 3.5rem;
    letter-spacing: 0.08em;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
    margin: 0 0 60px;
    line-height: 1.667;
    text-align: center;
}

.p-serviceList__subtitle {
    font-size: 2.4rem;
    letter-spacing: 0.08em;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
    margin: 0 0 30px;
    line-height: 1.2;
}

.p-serviceList:nth-child(n+2) .p-serviceList__text {
    height: 520px;
}

.p-serviceList .p-serviceList__img {
    width: 53.5%;
    height: 640px;
    background-size: cover;
    background-repeat: no-repeat;
}

.p-serviceList {
    margin: 0 0 150px;
}

.p-serviceList:nth-of-type(odd) .p-serviceList__text {
    margin: 0 -60px 0 0;
}

.p-serviceList:nth-of-type(even) .p-serviceList__text {
    margin: 0 0 0 -60px;
}

.p-serviceList:nth-of-type(1) .p-serviceList__text {
    height: 478px;
    margin: -170px auto 0 0;
}

.p-serviceList:nth-of-type(1) .p-serviceList__img {
    width: 100%;
    height: 590px;
    background-image: url(images/service01.jpg);
}

.p-serviceList:nth-of-type(2) .p-serviceList__img {
    background-image: url(images/service02.jpg);
}

.p-serviceList:nth-of-type(3) .p-serviceList__img {
    background-image: url(images/service03.jpg);
}

.p-serviceList:nth-of-type(4) .p-serviceList__img {
    background-image: url(images/service04.jpg);
}

.p-serviceList:nth-of-type(5) .p-serviceList__img {
    background-image: url(images/service05.jpg);
}

.p-serviceList:nth-of-type(6) .p-serviceList__img {
    background-image: url(images/service06.jpg);
}

.p-serviceSolve {
    width: 1000px;
    background-color: #fff;
    margin: auto;
    padding: 77px 0 65px;
}

.p-serviceSolve p {
    font-size: 2rem;
    text-align: center;
    margin: 0 0 10px;
    color: #49C3B9;
    letter-spacing: 0.15em;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.p-serviceSolve h3 {
    font-size: 3.2rem;
    letter-spacing: 0.08em;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
    margin: 0 0 65px;
}

.p-serviceSolve ul li {
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
    line-height: 1.444;

}

.p-serviceSolve ul li:before {
    content: "";
    display: inline-block;
    background-image: url(images/service_solve_check.svg);
    width: 23px;
    height: 23px;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 10px 0 0;
}

.p-serviceSolve ul li:not(:last-child) {
    margin: 0 0 20px;
}

.p-serviceSolve ul li span {
    display: inline-block;
    max-width: 405px;
}

.p-serviceList:nth-of-type(1) .p-serviceSolve ul li span,
.p-serviceList:nth-of-type(5) .p-serviceSolve ul li span,
.p-serviceList:nth-of-type(6) .p-serviceSolve ul li span {
    max-width: none;
}

.p-serviceSolve__wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.p-serviceSolve__wrap ul:first-child {
    margin: 0 60px 0 0;
}

.p-serviceList:nth-of-type(1) .p-serviceSolve ul {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.p-serviceList:nth-of-type(5) .p-serviceSolve ul {
    max-width: 465px;
    margin: 0 auto;
    text-align: center;
}

.p-serviceList:nth-of-type(6) .p-serviceSolve ul {
    max-width: 502px;
    margin: 0 auto;
    text-align: center;
}

@media screen and (max-width:1400px) {
    .p-service__intro h2 {
        font-size: 4rem;
    }

    .p-serviceList__img {
        height: 450px;
    }

    .p-serviceList:nth-of-type(1) .p-serviceList__img {
        height: 430px;
    }

    .p-serviceList .p-serviceList__img {
        width: 100%;
        height: 300px;
    }

    .p-serviceList:nth-child(n+2) .p-serviceList__text {
        height: 460px;
    }

    .p-service__intro {
        margin: 0 0 120px;
    }

    .p-serviceList__text {
        padding: 0 30px;
    }
}

@media screen and (max-width:1000px) {
    .p-service {
        padding: 70px 0 0;
    }

    .p-serviceList {
        margin: 0 0 100px;
    }

    .p-serviceList__wrap {
        flex-direction: column;
    }

    .p-serviceList__img {
        width: 100%;
        height: 300px;
    }

    .p-serviceList:nth-child(n+2) .p-serviceList__text {
        width: 80%;
        height: auto;
    }

    .p-serviceList__text h2 {
        font-size: 3rem;
    }

    .p-serviceList__text {
        padding: 50px 60px;
    }

    .p-serviceList:nth-of-type(even) .p-serviceList__text {
        margin: -40px auto 0;
    }

    .p-serviceList:nth-of-type(odd) .p-serviceList__text {
        margin: -40px auto 0;
    }

    .p-service__intro h2 {
        font-size: 3rem;
        margin: 0 0 40px;
    }

    .p-service__intro {
        margin: 0 0 80px;
    }

    .p-serviceList:nth-of-type(1) .p-serviceList__text {
        height: auto;
        margin: -60px auto 0 0;
    }

    .p-serviceList__text {
        width: 80%;
        padding: 50px 40px;
    }

    .p-serviceSolve h3 {
        font-size: 2.8rem;
        margin: 0 0 35px;
    }

    .p-serviceSolve {
        padding: 50px 4% 65px;
    }

    .p-serviceSolve p {
        font-size: 1.8rem;
    }

    .p-serviceSolve ul li:before {
        width: 18px;
        height: 18px;
        background-size: 100%;
    }

    .p-serviceSolve ul li {
        font-size: 1.6rem;
    }

    .p-serviceSolve h3 {
        font-size: 2.5rem;
    }

    .p-serviceList__subtitle {
        font-size: 1.7rem;
    }

    .p-serviceList__text h2 {
        margin: 0 0 30px;
    }

    .p-serviceSolve__wrap {
        flex-direction: column;
    }

    .p-serviceSolve__wrap ul:first-child {
        margin: 0 0 15px 0;
    }

    .p-serviceList:nth-of-type(odd) .p-serviceList__wrap {
        flex-direction: column;
    }

    .p-serviceList__wrap {
        margin: 0 0 40px;
    }

    .p-serviceList:nth-of-type(1) .p-serviceList__img {
        height: 370px;
    }

    .p-service__intro h2 {
        font-size: 2rem;
    }

    .p-service__intro .c-text {
        width: 93%;
        line-height: 1.9;
        margin: auto;
    }

    .p-serviceSolve {
        width: 91%;
    }
}

@media screen and (max-width:820px) {
    .p-serviceSolve {
        width: 93%;
    }
}

@media screen and (max-width:590px) {
    .p-serviceList:nth-of-type(1) .p-serviceList__img {
        height: 170px;
    }

    .p-serviceList__text h2 {
        font-size: 2rem;
        margin: 0 0 20px;
    }

    .p-serviceList__text {
        width: 90%;
        padding: 35px 20px;
    }

    .p-serviceList__subtitle {
        font-size: 1.4rem;
        margin: 0 0 10px;
    }

    .p-serviceList:nth-of-type(1) .p-serviceList__text {
        margin: -40px 0 auto;
    }

    .p-serviceSolve h3 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .p-serviceSolve {
        padding: 35px 4% 40px;
    }

    .p-serviceList .p-serviceList__img {
        height: 170px;
    }

    .p-serviceSolve ul li span {
        width: 90%;
        text-align: left;
    }

    .p-serviceSolve p {
        font-size: 1.5rem;
    }

    .p-serviceList:nth-child(n+2) .p-serviceList__text {
        width: 90%;
    }
}

/*----------------------------------------
	Company
----------------------------------------*/

.p-conceptGreeting {
    margin: 0 0 160px;
}

.p-conceptGreeting__text {
    width: 48.6%;
}

.p-conceptGreeting__text h3 {
    font-size: 3.5rem;
    letter-spacing: 0.1em;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
    margin: 0 0 70px;
    line-height: 1.657;
}

.p-conceptGreeting__text .c-text {
    margin: 0 0 50px;
}

.p-conceptGreeting__img {
    width: 39%;
}

.p-conceptGreeting {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-conceptGreeting__name {
    text-align: right;
}

.p-conceptPhilosophy {
    margin: 0 0 122px;
}

.p-conceptProfile__box {
    background-color: #EEE9E4;
    border-radius: 10px;
    padding: 83px 14%;
}

.p-conceptProfile__box table {
    display: block;
    width: 100%;
    font-size: 1.8rem;
}

.p-conceptProfile__box table tbody {
    display: block;
    width: 100%;
}

.p-conceptProfile__box table tr {
    display: flex;
    flex-direction: column;
}

.p-conceptProfile__box table tr:not(:last-child) {
    margin: 0 0 70px;
}

.p-conceptProfile__box table tr:last-child {
    border-bottom: none;
}

.p-conceptProfile__box table th {
    width: 100%;
    margin: 0 0 30px;
    padding: 0 0 15px;
    font-weight: normal;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    line-height: 1.4;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
    border-bottom: dashed 1px #104584;
}

.p-conceptProfile__box table td {
    width: 100%;
    vertical-align: middle;
    line-height: 1.75;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    font-weight: bold;
}

.p-conceptProfile__box table td ul li .table_date {
    display: inline-block;
    width: 260px;
}

.p-conceptProfile__box table td ul li:before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: #49C3B9;
    transform: rotate(45deg);
    margin: 0 10px 0 0;
}

.table_workhistory {
    display: flex;
    align-items: center;
}

.p-conceptProfile__box table td ul li:not(:last-child) {
    margin: 0 0 30px;
}



@media screen and (max-width:1600px) {
    .p-conceptProfile__box {
        padding: 83px 7%;
    }
}

@media screen and (max-width:820px) {
    .p-conceptGreeting {
        display: flex;
        flex-direction: column-reverse;
        margin: 0 0 80px;
    }

    .p-conceptGreeting__text {
        width: 100%;
    }

    .p-conceptGreeting__img {
        margin: 0 0 40px;
    }

    .p-conceptGreeting__text .c-text {
        margin: 0 0 15px;
    }

    .p-conceptGreeting h3 {
        font-size: 2.6rem;
        margin: 0 0 30px;
    }

    .p-conceptPhilosophy {
        margin: 0 0 60px;
    }

    .p-conceptProfile__box {
        padding: 70px 5%;
    }

    .p-conceptProfile__box table td ul li:not(:last-child) {
        margin: 0 0 12px;
    }

    .p-conceptGreeting__name {
        width: 215px;
    }

    .p-conceptGreeting__name img {
        width: 100%;
    }

    .p-conceptPhilosophy__img .tb_none {
        display: block;
    }

    .p-conceptPhilosophy__img .pc_none {
        display: none;
    }

    .p-conceptProfile__box table th {
        font-size: 1.8rem;
        margin: 0 0 20px;
    }

    .p-conceptProfile__box table td {
        font-size: 1.5rem;
    }

    .p-conceptProfile__box table tr:not(:last-child) {
        margin: 0 0 35px;
    }

    .p-conceptProfile__box table td ul li.table_workhistory:before {
        display: none;
    }

    .table_date:before {
        content: "";
        display: inline-block;
        width: 8px;
        height: 8px;
        background-color: #49C3B9;
        transform: rotate(45deg);
        margin: 0 10px 0 0;
    }

    .table_workhistory {
        flex-direction: column;
        align-items: flex-start;
    }

    .p-conceptProfile__box table td ul li:before {
        width: 7px;
        height: 7px;
    }
}

@media screen and (max-width:590px) {
    .p-conceptProfile__box table td ul li:before {
        width: 14px;
        height: 14px;
    }

    .p-conceptGreeting__img {
        width: 54%;
    }

    .p-conceptGreeting h3 {
        font-size: 2rem;
    }

    .p-conceptGreeting__name {
        width: 170px;
    }

    .p-conceptPhilosophy__img .tb_none {
        display: none;
    }

    .p-conceptPhilosophy__img .pc_none {
        display: block;
    }

    .p-conceptProfile__box {
        padding: 45px 5%;
    }

    .p-conceptProfile__box table td ul li:not(:last-child) {
        margin: 0 0 5px;
    }

    .p-conceptProfile__box table th {
        padding: 0 0 8px;
    }
}


/*----------------------------------------
	Column
----------------------------------------*/

.post-type-archive-column {
    background-color: #EEE9E4;
}

.tax-column_category {
    background-color: #EEE9E4;
}

.p-column__archiveWrap {
    width: 55.5%;
}

.p-column__archiveArticle {
    margin: 0 0 35px;
}

.p-column__archiveArticle a {
    display: flex;
    position: relative;
    transition: 0.3s;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #BABABA;
}

.p-column__archiveArticle a:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    border-top: 1px solid #BABABA;
    border-right: 1px solid #BABABA;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    right: 30px;
    top: 50%;
}

.p-column__archiveArticle a:hover {
    opacity: 0.7;
}

.p-column__archiveInfo {
    display: flex;
    align-items: center;
    margin: 0 0 15px 0;
}

.p-column__archiveTime {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    margin: 0 20px 0 0;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.p-column__archiveTitle {
    font-size: 2rem;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
}

.p-column__archiveCategory {
    background-color: #49C3B9;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 14px;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
}

.post-type-archive-column .p-column__archiveWrap,
.tax-column_category .p-column__archiveWrap {
    width: 100%;
}

.p-columnLists__wrap {
    display: flex;
    align-items: center;
    margin: 0 0 90px;
    padding: 0 0 30px;
    border-bottom: dashed 1px #333333;
}

.p-columnLists {
    display: flex;
    align-items: center;
}

.p-columnLists li a {
    display: inline-block;
    padding: 4px 13px;
    font-size: 1.6rem;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
    background-color: #49C3B9;
    border-radius: 15px;
    color: #fff;
}

.p-columnLists li:not(:last-child) {
    margin: 0 20px 0 0;
}

.p-columnLists__title {
    font-size: 2.2rem;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
    color: #49C3B9;
    padding: 0 20px 0 0;
    margin: 0 20px 0 0;
    border-right: 1px solid #BABABA;
}

.p-column__imgNone {
    width: 200px;
}

.p-column__imgNone img {
    width: 100%;
}

.p-column__img img {
    border-radius: 10px 0 0 10px;
}

.p-column__archiveText {
    margin: 0 0 0 60px;
    padding: 25px 0;
}

.single-info {
    display: flex;
    align-items: center;
    margin: 0 0 28px;
}

.single-info__wrap {
    display: flex;
    align-items: center;
    margin: 0 0 80px;
}

.single_info__category a {
    background-color: #49C3B9;
    color: #fff;
    display: inline-block;
    padding: 4px 14px;
    height: 21px;
    border-radius: 11px;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
}

.single-info__time {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    margin: 0 12px 0 0;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.single-column__title {
    font-size: 3.5rem;
    line-height: 1.486;
    letter-spacing: 0.08em;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
    margin: 6px 0 50px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(112, 112, 112, 0.3);
}

.single-column__text {
    width: 1000px;
    margin: 0 0 120px;
}

.single-column__img {
    width: 1000px;
}

.single-all__button {
    width: 400px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #104584;
    border-radius: 40px;
}

.single-all__button a {
    display: block;
    color: #fff;
}

.single-column__box {
    width: 100%;
}

.single-column__wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.single-column .p-sidebar__archive {
    width: 30%;
}

.single-column__contents {
    width: 1000px;
    margin: 0 auto 80px;
    padding: 0 0 130px;
    border-bottom: dashed 1px #000000;
}

.single-column__img {
    margin: 0 0 80px;
}

.single-column__img img {
    max-width: 1000px;
}

.single-column__contents p {
    line-height: 2.778;
}

.single-column__contact {
    width: 1000px;
    background-color: #EEE9E4;
    border-radius: 10px;
    margin: 0 auto 100px;
    padding: 68px 78px;
}

.single-column__contact .c-text {
    font-weight: bold;
    margin: 0 0 34px;
}

.single-column__contactWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.single-column__contactWrap h3 {
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    line-height: 1.818;
    color: #fff;
    background-color: #49C3B9;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 38px;
    height: 140px;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
    position: relative;
}

.single-column__contactWrap h3:before {
    content: "";
    display: block;
    background-image: url(images/column_contact_arrow.svg);
    background-size: cover;
    width: 40px;
    height: 140px;
    position: absolute;
    right: -40px;
    bottom: 0;
}

.single-column__contactWrap .c-button {
    background-color: #fff;
    margin: 0 0 26px;
}

.single-column__contactTel {
    font-size: 3rem;
    letter-spacing: 0.1em;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.single-column__contactTel span {
    font-size: 1.7rem;
}

.post_link_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.post_link_wrap a {
    text-align: center;
    display: block;
    width: 300px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    transition: all 0.3s;
    position: relative;
    transition: all 0.4s;
    border: 1px solid #707070;
}

.post_link_wrap a:after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 12px;
    background-image: url(images/button_arrow.svg);
    background-repeat: no-repeat;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: all 0.4s;
}

.post_link_wrap a.prev_post:after {
    left: 20px;
    transform: translateY(-50%) rotate(-180deg);
}

.post_link_wrap a.single-column__button:after {
    background-image: url(images/button_arrow_white.svg);
}


.post_link_wrap a:not(:last-child) {
    margin: 0 50px 0 0;
}

.single-column__button {
    background-color: #333;
    color: #fff;
}

@media screen and (max-width:1300px) {
    .single-column__contents p {
        line-height: 2;
    }
}

@media screen and (max-width:1000px) {
    .single-column__wrap {
        padding: 0;
    }

    .p-column__archiveText {
        margin: 0 0 0 30px;
    }

    .p-columnLists__wrap {
        margin: 0 0 50px;
    }

    .single-column__contents {
        width: 85%;
    }

    .single-column__img {
        width: 100%;
    }

    .single-column__img img {
        max-width: auto;
        width: 100%;
    }

    .single-column__title {
        margin: 0 0 35px;
        padding-bottom: 15px;
    }

    .single-info__wrap {
        margin: 0 0 50px;
    }

    .single-column__contact {
        width: 100%;
    }

    .single-column__contact {
        padding: 50px 3%;
    }

    .single-column__contactWrap {
        flex-direction: column;
        margin: 30px 0 0;
    }

    .single-column__contactWrap h3 {
        font-size: 1.8rem;
        height: auto;
        margin: 0 0 30px;
        padding: 15px 38px;
        border-radius: 8px;
    }

    .single-column__contactWrap h3:before {
        display: none;
    }

    .single-column__contactForm {
        display: flex;
        flex-direction: column-reverse;
    }

    .single-column__contactWrap .c-button {
        margin: 0 auto;
    }

    .single-column__contactTel {
        margin: 0 0 20px;
    }
}

@media screen and (max-width:820px) {
    .p-column__archiveTitle {
        font-size: 1.8rem;
    }

    .p-column__archiveText {
        margin: 0 0 0 30px;
        padding: 10px 0;
    }

    .p-column__archiveTime {
        font-size: 1.2rem;
    }

    .p-column__archiveCategory {
        font-size: 1.2rem;
    }

    .p-column__archiveTitle {
        font-size: 1.5rem;
    }

    .p-column__imgNone {
        width: 130px;
    }

    .p-column__imgNone img {
        height: 100%;
    }

    .p-column__img img {
        width: 130px;
        object-fit: cover;
    }

    .p-column__archiveArticle {
        margin: 0 0 20px;
    }

    .p-columnLists li a {
        font-size: 1.4rem;
    }

    .p-columnLists__title {
        font-size: 1.8rem;
    }

    .p-columnLists__wrap {
        padding: 0 0 20px;
    }

    .single-column__title {
        font-size: 2.2rem;
        padding-bottom: 15px;
    }

    .single-column__contents {
        margin: 0 auto 40px;
    }

    .single-column__contents {
        padding: 0 0 60px;
    }

    .post_link_wrap a {
        font-size: 1.3rem;
        width: 135px;
        height: 45px;
    }

    .post_link_wrap a:after {
        right: 7px;
    }

    .post_link_wrap a.prev_post:after {
        left: 7px;
    }

    .post_link_wrap a:not(:last-child) {
        margin: 0 10px 0 0;
    }

    .single-column__img {
        margin: 0 0 30px;
    }

    .single_info__category a {
        font-size: 1.2rem;
    }

    .single-info__time {
        font-size: 1.2rem;
    }

    .single-info__wrap {
        margin: 0 0 20px;
    }

    .single-column__contents p {
        font-size: 1.4rem;
    }

    .single-column__contactTel {
        font-size: 2.5rem;
    }
}

@media screen and (max-width:590px) {

    .p-column__archiveTitle {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .p-column__archiveTime {
        font-size: 1rem;
    }

    .p-column__archiveCategory {
        font-size: 1rem;
        padding: 4px 5px;
    }

    .p-column__archiveInfo {
        margin: 0 0 8px 0;
    }

    .p-column__archiveArticle a {
        background-color: transparent;
        border: none;
    }

    .p-column__archiveTime {
        margin: 0 10px 0 0;
    }

    .p-column__img {
        width: 90px;
    }

    .p-column__imgNone {
        width: 90px;
    }

    .p-column__img img {
        width: 100%;
        border-radius: 0;
    }

    .p-column__imgNone img {
        width: 100%;
    }

    .p-column__archiveText {
        margin: 0 0 0 15px;
        padding: 0;
    }

    .p-column__archiveArticle a:before {
        display: none;
    }

    .p-columnLists__wrap {
        flex-direction: column;
        margin: 0 0 30px;
    }

    .p-columnLists__title {
        width: 100%;
        margin: 0 0 10px;
        padding: 0 0 10px;
        border-right: none;
        border-bottom: 1px solid #BABABA;
    }

    .p-columnLists {
        flex-wrap: wrap;
    }

    .p-columnLists li:not(:last-child) {
        margin: 0 5px 0 0;
    }

    .p-columnLists li:nth-child(n+4) {
        margin-top: 10px;
    }

    .single-column__contents {
        width: 100%;
        padding: 0 0 40px;
    }

    .post_link_wrap a {
        font-size: 3vw;
    }

    .single-column__contact {
        margin: 0 auto 50px;
    }

    .single-column__contactWrap h3 {
        font-size: 1.6rem;
        padding: 10px 15px;
    }
}

@media screen and (max-width:450px) {
    .single-all__button {
        width: 100%;
    }
}

/*----------------------------------------
	sidebar
----------------------------------------*/

.p-sidebar__archive {
    background-color: #fff;
    border: 1px solid rgba(112, 112, 112, 0.3);
    border-radius: 5px;
    padding: 40px 26px;
}

.p-sidebar__archiveTitle {
    position: relative;
    color: #104584;
    line-height: 1.5;
    margin: 0 0 30px;
    padding: 0 0 7px;
    font-size: 2.4rem;
    letter-spacing: 0.08em;
    border-bottom: 2px solid #104584;
}

.p-sidebar__archiveLists li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(112, 112, 112, 0.3);
    font-size: 2rem;
    letter-spacing: 0.08em;
    font-weight: bold;
    text-align: center;
}

.p-sidebar__archiveLists li:first-child {
    border-top: 1px solid rgba(112, 112, 112, 0.3);
}

.p-sidebar__archiveLists li a {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

@media screen and (max-width:820px) {
    .p-sidebar__archiveTitle {
        font-size: 1.8rem;
        margin: 0 0 20px;
    }

    .p-sidebar__archiveLists li {
        font-size: 1.8rem;
        padding: 15px 0;
    }

    .p-sidebar__archive {
        padding: 30px 12px;
    }

    .p-sidebar__archive {
        width: 100%;
    }
}

@media screen and (max-width:590px) {
    .p-sidebar__archiveLists li {
        font-size: 1.5rem;
        padding: 12px 0;
    }
}

/*----------------------------------------
	privacy policy
----------------------------------------*/

.privacy_title {
    font-size: 1.8rem;
    line-height: 1.4;
    padding: 0.5em;
    background-color: rgba(196, 221, 180, 0.09);
    border-left: 4px solid #104584;
    margin: 0 0 15px;
}

.privacy_title02 {
    font-size: 2.2rem;
    line-height: 1.4;
    padding: 0.5em;
    color: #fff;
    background-color: #104584;
    margin: 0 auto 30px;
    width: 500px;
    text-align: center;
}

.privacy_policy .text {
    margin: 0 0 30px;
}

.privacy_policy_list {
    font-weight: bold;
    color: #104584;
    margin: 0 0 20px;
    line-height: 1.3;
}

.privacy_policy_lists li {
    line-height: 1.75;
}

.privacy_policy_list > ul {
    margin: 10px 0 0;
    color: #000;
    line-height: 1.7;
    font-weight: normal;
}

@media screen and (max-width: 768px) {
    .privacy_title {
        font-size: 1.6rem;
    }

    .privacy_title02 {
        font-size: 1.8rem;
    }

    .privacy_policy_list {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 590px) {
    .privacy_title02 {
        width: 100%;
        margin: 0 auto 20px;
    }
}
