@charset "UTF-8";

/*///////////////////// font-face 読み込み例 ///////////////////////////*/
/*Shippori Mincho 400*/
@font-face {
    font-family: 'Shippori Mincho';
    src: url(/fonts/ShipporiMincho-Regular.woff2);
    font-weight: 400;
    font-display: swap;
}
/*Shippori Mincho 500*/
@font-face {
    font-family: 'Shippori Mincho';
    src: url(/fonts/ShipporiMincho-Medium.woff2);
    font-weight: 500;
    font-display: swap;
}
/*Shippori Mincho 700*/
@font-face {
    font-family: 'Shippori Mincho';
    src: url(/fonts/ShipporiMincho-Bold.woff2);
    font-weight: 700;
    font-display: swap;
}
/*Zen Kaku Gothic New 400*/
@font-face {
    font-family: 'Zen Kaku Gothic New';
    src: url(/fonts/ZenKakuGothicNew-Regular.woff2);
    font-weight: 400;
    font-display: swap;
}
/*Zen Kaku Gothic New 500*/
@font-face {
    font-family: 'Zen Kaku Gothic New';
    src: url(/fonts/ZenKakuGothicNew-Medium.woff2);
    font-weight: 500;
    font-display: swap;
}
/*Prata 400*/
@font-face {
    font-family: 'Prata';
    src: url(/fonts/Prata-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}
/*Cardo 400*/
@font-face {
    font-family: 'Cardo';
    src: url(/fonts/Cardo-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}
/*Cardo 700*/
@font-face {
    font-family: 'Cardo';
    src: url(/fonts/Cardo-Bold.ttf);
    font-weight: 700;
    font-display: swap;
}
/*///////////////////// font-face 読み込み例 ///////////////////////////*/
.org-header *{
    font-family: 'Shippori Mincho';
    color: #000;
}
.org-header{
    width: 100%;
    background-color: #fff;
    z-index: 5;
    position: sticky;
    top: 0;
}
.org-header .header__inner{
    width: 100%;
    height: 85px;
}
.org-header .header__left{
    margin-left: 20px;
}
.org-header .header__logo img{
    max-width: 305px;
    min-height: 60px;
}
.org-header .header__logo a:hover{
    opacity: 1;
}
.header__right{
    display: flex;
    align-items: center;
    gap: 30px;
}
.header__list{
    display: flex;
    gap: 30px;
}
.header__items a{
    font-size: 18px;
    font-weight: 500;
}
.header__items a:hover{
    opacity: 1;
    color: #006F38;
}
.header__menu{
    width: 85px;
    height: 85px;
}
.modal__contact *{
    font-family: 'Shippori Mincho';
    color: #000;
}
.modal__contact{
    display: none;
    width: 1101px;
    position: fixed;
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 5;
}
.modal__inner{
    position: relative;
    padding: 130px 120px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.modal__close{
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
}
.modal__left{
    display: flex;
    align-items: flex-start;
    gap: 68px;
}
.modal__link__list{
    display: flex;
    flex-flow: column;
    gap: 28px;
}
.modal__link__item a{
    display: flex;
    flex-flow: column;
    align-items: flex-start;
}
.modal__link__item a span{
    font-size: 16px;
    font-weight: 500;
}
.modal__right .header__logo{
    margin-bottom: 22px;
}
.modal__right .header__logo img{
    max-width: 305px;
    max-height: 60px;
}
.modal__right .header__logo a:hover{
    opacity: 1;
}
.contact__tel__list{
    margin-bottom: 26px;
}
.contact__tel__item{
    font-family: 'Zen Kaku Gothic New';
    font-size: 14px;
    font-weight: 500;
}
.contact__tel__item span{
    display: inline-block;
    font-family: 'Zen Kaku Gothic New';
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    vertical-align: -2px;
    margin-left: 3px;
}
.contact__eigyo__list{
    margin-bottom: 40px;
}
.contact__eigyo__item{
    font-family: 'Zen Kaku Gothic New';
    font-size: 14px;
    color: #9F9F9F;
}
.contact__btn__list{
    width: 249px;
    display: flex;
    flex-flow: column;
    gap: 10px;
}
.contact__btn__item{
    width: 100%;
}
[class*="contact__btn--"]{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #006F38 0%, #629C41 100%);
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    position: relative;
    padding-bottom: 1px;
}
[class*="contact__btn--"]:hover {
    opacity: 1;
}
[class*="contact__btn--"] .icon-arrow{
    width: 15px;
    height: 12px;
    fill: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    transition: all 0.3s;
}
[class*="contact__btn--"]:hover .icon-arrow {
    right: 17px;
}
.contact__btn--login{
    background: #000;
}