﻿@charset "UTF-8";
/*************************
フォーム関連のスタイルリセット
**************************/
button,
input[type=submit] {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: inherit;
}

input[type=text],
input[type=number],
input[type=tel],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*
layout
*/
/*
color
*/
/*
pxをvwに変換

ウインドウ幅1400pxに対して要素幅50pxの場合
getvw(50,1400)となる
*/
/*
メディアクエリ
記述例
body{
  @include msw('max',1200){
    background-color: red;
  }
}
*/
/*
ICON FONT
*/
/************************************************************
SCREEN ALL
*************************************************************/
/************************************************************
SCREEN SP
*************************************************************/
/************************************************************
SCREEN PC
*************************************************************/
/************************************************************
SCREEN ALL
*************************************************************/
/************************************************************
SCREEN SP
*************************************************************/
@media screen and (max-width:767px) {
  section.message .message-kv {
    width: calc(100% - 7.6923076923vw);
    margin: 0 0 0 auto;
  }
  section.message .message-wrapper {
    position: relative;
    padding: 30px 0 100px;
    background-color: white;
    transform: translateX(-1px);
  }
  section.message .message-txt-01 {
    font-feature-settings: "palt" on;
    font-size: 14px;
    font-weight: 400;
    line-height: 2em;
    letter-spacing: 0.05em;
  }
  section.message .message-txt-01:nth-child(n+2) {
    margin-top: 20px;
  }
  section.message .message-name {
    margin-top: 30px;
    text-align: right;
  }
  section.message .message-name .message-name-txt-01 {
    color: #0C3387;
    font-feature-settings: "palt" on;
    font-size: 14px;
    font-weight: 500;
    line-height: 2em;
    letter-spacing: 1.12px;
  }
  section.message .message-name .message-name-txt-02 {
    margin-top: 14px;
    color: #0C3387;
    font-feature-settings: "palt" on;
    font-size: 24px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 1.96px;
    display: flex;
    justify-content: flex-end;
    gap: 0.3em;
  }
  section.message .message-name .message-name-txt-02 .chars-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
  }
  section.message .message-name .message-name-txt-02 .ruby {
    font-size: 10px;
    font-weight: 400;
    line-height: 0;
    letter-spacing: 0.5em;
  }
  section.message .message-name .message-name-sign {
    margin: 12px 0 0 auto;
    width: 173px;
  }
}
/************************************************************
SCREEN PC
*************************************************************/
@media screen and (min-width:768px) {
  section.message .message-kv {
    width: 92.19%;
    max-width: calc(1400px + (100% - 1400px) / 2);
    margin: 0 0 0 auto;
  }
  section.message .message-wrapper {
    position: relative;
    padding: 80px 90px 150px;
    background-color: white;
    transform: translateX(-1px);
  }
  section.message .message-txt-01 {
    font-feature-settings: "palt" on;
    font-size: 16px;
    font-weight: 400;
    line-height: 2em;
    letter-spacing: 1.12px;
  }
  section.message .message-txt-01:nth-child(n+2) {
    margin-top: 20px;
  }
  section.message .message-name {
    margin-top: 30px;
    text-align: right;
  }
  section.message .message-name .message-name-txt-01 {
    color: #0C3387;
    font-feature-settings: "palt" on;
    font-size: 16px;
    font-weight: 500;
    line-height: 2em;
    letter-spacing: 1.12px;
  }
  section.message .message-name .message-name-txt-02 {
    margin-top: 14px;
    color: #0C3387;
    font-feature-settings: "palt" on;
    font-size: 28px;
    font-weight: 700;
    line-height: 2em;
    letter-spacing: 1.96px;
    display: flex;
    justify-content: flex-end;
    gap: 0.3em;
  }
  section.message .message-name .message-name-txt-02 .chars-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
  }
  section.message .message-name .message-name-txt-02 .ruby {
    font-size: 12px;
    font-weight: 400;
    line-height: 0;
    letter-spacing: 0.5em;
  }
  section.message .message-name .message-name-sign {
    margin: 20px 0 0 auto;
    width: 281px;
  }
}